unfuck config
This commit is contained in:
parent
df87f08318
commit
91f5cd943b
35 changed files with 36 additions and 782 deletions
0
lua/plugins/clang.lua
Normal file → Executable file
0
lua/plugins/clang.lua
Normal file → Executable file
0
lua/plugins/colorscheme.lua
Normal file → Executable file
0
lua/plugins/colorscheme.lua
Normal file → Executable file
16
lua/plugins/css.lua
Executable file
16
lua/plugins/css.lua
Executable 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
0
lua/plugins/example.lua
Normal file → Executable file
0
lua/plugins/init.lua
Normal file → Executable file
0
lua/plugins/init.lua
Normal file → Executable file
0
lua/plugins/meson.lua
Normal file → Executable file
0
lua/plugins/meson.lua
Normal file → Executable file
43
lua/plugins/omnisharp.lua
Normal file
43
lua/plugins/omnisharp.lua
Normal 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
4
lua/plugins/opengl.lua
Normal file → Executable file
|
|
@ -7,8 +7,8 @@ return {
|
|||
"neovim/nvim-lspconfig",
|
||||
opts = {
|
||||
servers = {
|
||||
glslls = {
|
||||
mason = false,
|
||||
glsl_analyzer = {
|
||||
-- mason = false,
|
||||
},
|
||||
},
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue