add core configuration
This commit is contained in:
parent
ad124505da
commit
c556ce55b6
94 changed files with 2816 additions and 959 deletions
24
home-manager/modules/neovim/plugins/default.nix
Normal file
24
home-manager/modules/neovim/plugins/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{...}: {
|
||||
imports = [
|
||||
./telescope.nix
|
||||
./lualine.nix
|
||||
./treesitter.nix
|
||||
./gitsigns.nix
|
||||
./tree.nix
|
||||
./lsp
|
||||
# ./dap.nix
|
||||
];
|
||||
programs.nixvim.plugins = {
|
||||
sleuth.enable = true;
|
||||
comment.enable = true;
|
||||
indent-blankline.enable = true;
|
||||
web-devicons.enable = true;
|
||||
fugitive.enable = true;
|
||||
markdown-preview.enable = true;
|
||||
|
||||
git-worktree = {
|
||||
enable = true;
|
||||
enableTelescope = true;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue