mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -04:00
Trying to fix LSPs
This commit is contained in:
parent
7fd34cd062
commit
b26b68b1e6
3 changed files with 28 additions and 3 deletions
|
|
@ -11,8 +11,6 @@ require("lazy").setup({
|
||||||
-- add LazyVim and import its plugins
|
-- add LazyVim and import its plugins
|
||||||
{ "LazyVim/LazyVim", import = "lazyvim.plugins" },
|
{ "LazyVim/LazyVim", import = "lazyvim.plugins" },
|
||||||
-- import any extras modules here
|
-- import any extras modules here
|
||||||
{ import = "lazyvim.plugins.extras.lang.typescript" },
|
|
||||||
{ import = "lazyvim.plugins.extras.lang.json" },
|
|
||||||
{ import = "lazyvim.plugins.extras.ui.mini-animate" },
|
{ import = "lazyvim.plugins.extras.ui.mini-animate" },
|
||||||
-- import/override with your plugins
|
-- import/override with your plugins
|
||||||
{ import = "plugins" },
|
{ import = "plugins" },
|
||||||
|
|
|
||||||
|
|
@ -12,5 +12,31 @@ return {
|
||||||
|
|
||||||
vim.cmd('colorscheme github_dark_high_contrast')
|
vim.cmd('colorscheme github_dark_high_contrast')
|
||||||
end,
|
end,
|
||||||
}
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
"neovim/nvim-lspconfig",
|
||||||
|
---@class PluginLspOpts
|
||||||
|
opts = {
|
||||||
|
---@type lspconfig.options
|
||||||
|
servers = {
|
||||||
|
html = {},
|
||||||
|
cssls = {},
|
||||||
|
jsonls = {},
|
||||||
|
marksman = {},
|
||||||
|
tsserver = {},
|
||||||
|
tailwindcss = {},
|
||||||
|
volar = {},
|
||||||
|
|
||||||
|
lua_ls = {},
|
||||||
|
|
||||||
|
nil_ls = {},
|
||||||
|
pyright = {},
|
||||||
|
|
||||||
|
--hls = {},
|
||||||
|
rust_analyzer = {},
|
||||||
|
diagnosticls = {},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -72,6 +72,7 @@
|
||||||
haskell-language-server
|
haskell-language-server
|
||||||
haskellPackages.hoogle
|
haskellPackages.hoogle
|
||||||
cabal2nix
|
cabal2nix
|
||||||
|
stack
|
||||||
|
|
||||||
cargo
|
cargo
|
||||||
python3
|
python3
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue