18 lines
360 B
Nix
18 lines
360 B
Nix
{ pkgs, ... }: {
|
|
programs.neovim = {
|
|
enable = true;
|
|
viAlias = true;
|
|
vimAlias = true;
|
|
defaultEditor = true;
|
|
/*plugins = with pkgs.vimPlugins; [
|
|
nvim-tree-lua
|
|
nvim-treesitter.withAllGrammars
|
|
];*/
|
|
};
|
|
|
|
home.file.".config/nvim" = {
|
|
source = ./configs;
|
|
recursive = true;
|
|
};
|
|
}
|