diff options
author | sinanmohd <sinan@sinanmohd.com> | 2025-08-31 15:39:39 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2025-08-31 22:28:28 +0530 |
commit | 31458b74b81df4ef5101c01b26fc28fc32ee821b (patch) | |
tree | 15846c395e3ac5aa085a30d11833b6f531abb345 /home/common/modules/neovim/default.nix | |
parent | 07854ac073b6c4a3e749078fa113367105a7af08 (diff) |
feat(home/common): init neovim
Diffstat (limited to 'home/common/modules/neovim/default.nix')
-rw-r--r-- | home/common/modules/neovim/default.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/home/common/modules/neovim/default.nix b/home/common/modules/neovim/default.nix new file mode 100644 index 0000000..488e4ee --- /dev/null +++ b/home/common/modules/neovim/default.nix @@ -0,0 +1,13 @@ +{ pkgs, ... }: +{ + home.packages = with pkgs; [ + # telescope + ripgrep + fd + # lazy + gcc + gnumake + ]; + + xdg.configFile.nvim.source = ./config; +} |