up
This commit is contained in:
@@ -1,10 +1,11 @@
|
||||
{pkgs, ...}: {
|
||||
imports = [
|
||||
./options.nix
|
||||
./autocmd.nix
|
||||
./mappings.nix
|
||||
./options.nix
|
||||
./plugins/conform.nix
|
||||
./plugins/lazygit.nix
|
||||
./plugins/lsp.nix
|
||||
./plugins/mini.nix
|
||||
./plugins/oil.nix
|
||||
./plugins/treesitter.nix
|
||||
|
||||
15
profiles/base/home-manager/neovim/plugins/lsp.nix
Normal file
15
profiles/base/home-manager/neovim/plugins/lsp.nix
Normal file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
programs.nixvim.plugins = {
|
||||
lsp = {
|
||||
enable = true;
|
||||
inlayHints = true;
|
||||
servers = {
|
||||
nil_ls.enable = true; # Nix
|
||||
ts_ls.enable = true; # TS/JS
|
||||
cssls.enable = true; # CSS
|
||||
dockerls.enable = true; # Docker
|
||||
elixirls.enable = true; # Elixir
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user