unfuck config

This commit is contained in:
Benjamin Palko 2025-01-05 23:06:49 -05:00
parent df87f08318
commit 91f5cd943b
35 changed files with 36 additions and 782 deletions

0
lua/config/autocmds.lua Normal file → Executable file
View file

0
lua/config/keymaps.lua Normal file → Executable file
View file

0
lua/config/lazy.lua Normal file → Executable file
View file

0
lua/config/options.lua Normal file → Executable file
View file

0
lua/plugins/clang.lua Normal file → Executable file
View file

0
lua/plugins/colorscheme.lua Normal file → Executable file
View file

16
lua/plugins/css.lua Executable file
View file

@ -0,0 +1,16 @@
return {
{
"nvim-treesitter/nvim-treesitter",
opts = { ensure_installed = { "css" } },
},
{
"neovim/nvim-lspconfig",
opts = {
servers = {
cssls = {},
cssmodules_ls = {},
css_variables = {},
},
},
},
}

0
lua/plugins/example.lua Normal file → Executable file
View file

0
lua/plugins/init.lua Normal file → Executable file
View file

0
lua/plugins/meson.lua Normal file → Executable file
View file

43
lua/plugins/omnisharp.lua Normal file
View file

@ -0,0 +1,43 @@
return {
{
"nvim-treesitter/nvim-treesitter",
opts = { ensure_installed = { "c_sharp" } },
},
{
"williamboman/mason.nvim",
opts = { ensure_installed = { "csharpier", "netcoredbg" } },
},
{
"neovim/nvim-lspconfig",
opts = {
servers = {
csharp_ls = {},
},
},
},
-- {
-- "nvimtools/none-ls.nvim",
-- optional = true,
-- opts = function(_, opts)
-- local nls = require("null-ls")
-- opts.sources = vim.list_extend(opts.sources or {}, {
-- nls.builtins.formatting.csharpier,
-- })
-- end,
-- },
{
"stevearc/conform.nvim",
optional = true,
opts = {
formatters_by_ft = {
cs = { "csharpier" },
},
formatters = {
csharpier = {
command = "dotnet-csharpier",
args = { "--write-stdout" },
},
},
},
},
}

4
lua/plugins/opengl.lua Normal file → Executable file
View file

@ -7,8 +7,8 @@ return {
"neovim/nvim-lspconfig",
opts = {
servers = {
glslls = {
mason = false,
glsl_analyzer = {
-- mason = false,
},
},
},