Nvim : Add nixd lsp.
This commit is contained in:
parent
16e3faac54
commit
17d69bd019
|
@ -171,7 +171,7 @@
|
|||
const = self.nixosModules.const;
|
||||
flake = self;
|
||||
inputs = inputs;
|
||||
style = self.style;
|
||||
# style = self.style;
|
||||
wallpaper = self.wallpaper { pkgs = nixpkgs.legacyPackages.${system}.pkgs; };
|
||||
};
|
||||
};
|
||||
|
@ -285,7 +285,7 @@
|
|||
const = self.nixosModules.const;
|
||||
flake = self;
|
||||
inputs = inputs;
|
||||
style = self.style { config = config; };
|
||||
# style = self.style { config = config; };
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
lsof
|
||||
ltex-ls
|
||||
neofetch
|
||||
nixd
|
||||
nmap
|
||||
parallel
|
||||
parted
|
||||
|
|
|
@ -60,6 +60,7 @@ in {
|
|||
"plugin/lsp/Haskell.lua"
|
||||
"plugin/lsp/Rust.lua"
|
||||
"plugin/lsp/Tex.lua"
|
||||
"plugin/lsp/Nix.lua"
|
||||
"key/Autocomplete.lua"
|
||||
"key/Buffer.lua"
|
||||
"key/Colorscheme.lua"
|
||||
|
|
3
module/common/nvim/src/plugin/lsp/Nix.lua
Normal file
3
module/common/nvim/src/plugin/lsp/Nix.lua
Normal file
|
@ -0,0 +1,3 @@
|
|||
local lspconfig = require("lspconfig")
|
||||
|
||||
lspconfig.nixd.setup {}
|
Loading…
Reference in a new issue