Current working changes to configuration
This commit is contained in:
commit
0a24ffcef1
66 changed files with 5312 additions and 0 deletions
22
home/neovim/neovim.nix
Normal file
22
home/neovim/neovim.nix
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{config, pkgs, ... }:
|
||||
{
|
||||
programs.neovim = {
|
||||
enable = true;
|
||||
defaultEditor = true;
|
||||
|
||||
extraPackages = with pkgs; [
|
||||
fd
|
||||
lua-language-server
|
||||
stylua
|
||||
tree-sitter
|
||||
clang
|
||||
deno
|
||||
nodejs
|
||||
shellcheck
|
||||
];
|
||||
};
|
||||
xdg.configFile."nvim" = {
|
||||
source = ./neovim;
|
||||
recursive = true;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue