diff options
Diffstat (limited to 'config/nvim/lua/plugins.lua')
| -rw-r--r-- | config/nvim/lua/plugins.lua | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/config/nvim/lua/plugins.lua b/config/nvim/lua/plugins.lua index 03659d7..6d92a76 100644 --- a/config/nvim/lua/plugins.lua +++ b/config/nvim/lua/plugins.lua @@ -61,7 +61,7 @@ return require("packer").startup(function() -- nvim lsp configuration use { "neovim/nvim-lspconfig", - ft = {"rust", "python", "c", "cpp", "lua", "go", "haskell", "ocaml"}, + ft = {"rust", "python", "c", "cpp", "lua", "go", "haskell", "ocaml", "zig"}, config = function() vim.diagnostic.config { signs = false, @@ -173,6 +173,9 @@ return require("packer").startup(function() } lspconfig.clangd.setup { on_attach = on_attach } + + -- pacman -S zls + lspconfig.zls.setup{} end, } @@ -497,15 +500,15 @@ return require("packer").startup(function() -- -- run = ":DistantInstall" -- } - use { - 'chipsenkbeil/distant.nvim', - branch = 'v0.3', - config = function() - require('distant'):setup() - require("telescope").load_extension("distant") - end, - -- run = ":DistantInstall" - } + -- use { + -- 'chipsenkbeil/distant.nvim', + -- branch = 'v0.3', + -- config = function() + -- require('distant'):setup() + -- require("telescope").load_extension("distant") + -- end, + -- -- run = ":DistantInstall" + -- } -- jupyter kernel in nvim (with images, needs ueberzug) -- use { |
