This commit is contained in:
Hadi
2024-06-07 21:37:48 +02:00
parent 17f93ea60b
commit 7bb06e521f
6 changed files with 43 additions and 5 deletions

View File

@@ -3,7 +3,7 @@
./kitty
./lf
./neofetch
./nvim
./nvim/laptop.nix
./qutebrowser
./spicetify
./wofi

33
home/apps/nvim/server.nix Normal file
View File

@@ -0,0 +1,33 @@
{ inputs, ... }: {
imports = [
inputs.nixvim.homeManagerModules.nixvim
./auto-pairs.nix
./options.nix
./telescope.nix
./nvim-tree.nix
./lightline.nix
./git.nix
./cmp.nix
./none-ls.nix
./wilder.nix
./lsp.nix
./treesitter.nix
./toggleterm.nix
./whichkey.nix
./alpha.nix
./keymaps.nix
./comment.nix
./oil.nix
./trouble.nix
./noice.nix
];
programs.nixvim = {
enable = true;
colorschemes.catppuccin = {
enable = true;
settings = { transparent_background = true; };
};
};
}

View File

@@ -1 +1 @@
{ imports = [ ./lf ./neofetch ./nvim ]; }
{ imports = [ ./lf ./neofetch ./nvim/server.nix ]; }