Void Linux workstation powered by niri, Fish and NeoVim. Contains scripts, browser extensions, custom XBPS packages, and typst plugins. git.anhgelus.world/anhgelus/dotfiles
void niri fish neovim nvim vim dotfiles linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(nvim): install more lsp

+16 -3
+16 -3
config/nvim/lua/plugins/lsp.lua
··· 2 2 { 3 3 "neovim/nvim-lspconfig", 4 4 config = function() 5 - local lspconfig = require("lspconfig") 5 + -- local lspconfig = require("lspconfig") 6 6 7 - lspconfig.pylsp.setup({}) 7 + -- lspconfig.pylsp.setup({}) 8 8 end, 9 9 }, 10 10 { "mason-org/mason.nvim", opts = {} }, ··· 16 16 }, 17 17 opts = { 18 18 ensure_installed = { 19 + -- python 19 20 "ty", 21 + -- elixir 20 22 "elixirls", 23 + -- go 21 24 "gopls", 25 + -- typst 22 26 "tinymist", 23 - "clangd" 27 + -- C 28 + "clangd", 29 + -- zig 30 + "zls", 31 + -- clojure 32 + "clojure_lsp", 33 + -- web 34 + "cssls", "emmet_ls", "html", 35 + -- containers 36 + "dockerls" 24 37 }, 25 38 }, 26 39 },