configs/neovim: enable lsp / indenting for haskell

This commit is contained in:
Aaron Bieber 2023-05-19 14:39:14 -06:00
parent e3dfe6d69a
commit b994fed678
No known key found for this signature in database
2 changed files with 5 additions and 0 deletions

View File

@ -69,6 +69,7 @@ cmd [[highlight NvimTreeFolderName guifg=default]]
local lspc = require("lspconfig")
lspc.elmls.setup {};
lspc.gopls.setup {};
lspc.hls.setup {};
lspc.lua_ls.setup {};
lspc.nil_ls.setup {};
lspc.perlpls.setup {};

View File

@ -48,6 +48,7 @@ let
elm-vim
fugitive
fzf-vim
haskell-vim
nvim-compe
nvim-lspconfig
nvim-tree-lua
@ -57,6 +58,7 @@ let
telescope-nvim
vimagit
vim-gitgutter
vim-hindent
vim-lua
vim-markdown
vim-nix
@ -82,6 +84,8 @@ in {
go
gopls
gotools
haskellPackages.haskell-language-server
haskellPackages.hindent
luaformatter
luajitPackages.lua-lsp
manix