nixvim!
This commit is contained in:
parent
1ae2d7cc6a
commit
6198767e5b
47 changed files with 2430 additions and 108 deletions
63
modules/editors/nixvim/nixvim.nix
Normal file
63
modules/editors/nixvim/nixvim.nix
Normal file
|
@ -0,0 +1,63 @@
|
|||
{ config, lib, ... }:
|
||||
let cfg = config.modules.editors.nixvim;
|
||||
in {
|
||||
options.modules.editors.nixvim.enable = lib.mkEnableOption "nixvim";
|
||||
imports = [
|
||||
#./keys.nix
|
||||
./settings.nix
|
||||
./plug/completion/cmp.nix
|
||||
#./plug/completion/copilot-cmp.nix
|
||||
#./plug/completion/lspkind.nix
|
||||
./plug/git/gitlinker.nix
|
||||
./plug/git/gitsigns.nix
|
||||
./plug/git/lazygit.nix
|
||||
./plug/git/worktree.nix
|
||||
|
||||
./plug/lsp/conform.nix
|
||||
./plug/lsp/fidget.nix
|
||||
./plug/lsp/hlchunk.nix
|
||||
./plug/lsp/lsp.nix
|
||||
./plug/lsp/lspsaga.nix
|
||||
./plug/lsp/none-ls.nix
|
||||
./plug/lsp/trouble.nix
|
||||
|
||||
./plug/snippets/luasnip.nix
|
||||
|
||||
./plug/statusline/lualine.nix
|
||||
#./plug/statusline/staline.nix
|
||||
|
||||
#./plug/treesitter/treesitter-context.nix
|
||||
./plug/treesitter/treesitter-textobjects.nix
|
||||
./plug/treesitter/treesitter.nix
|
||||
|
||||
#./plug/ui/alpha.nix
|
||||
./plug/ui/btw.nix
|
||||
./plug/ui/bufferline.nix
|
||||
./plug/ui/noice.nix
|
||||
./plug/ui/nvim-notify.nix
|
||||
./plug/ui/telescope.nix
|
||||
|
||||
./plug/utils/comment.nix
|
||||
./plug/utils/copilot.nix
|
||||
./plug/utils/flash.nix
|
||||
./plug/utils/hardtime.nix
|
||||
#./plug/utils/harpoon.nix
|
||||
./plug/utils/grapple.nix
|
||||
./plug/utils/illuminate.nix
|
||||
./plug/utils/nvim-autopairs.nix
|
||||
./plug/utils/oil.nix
|
||||
./plug/utils/undotree.nix
|
||||
./plug/utils/ufo.nix
|
||||
./plug/utils/whichkey.nix
|
||||
|
||||
];
|
||||
config = lib.mkIf cfg.enable {
|
||||
programs.nixvim = {
|
||||
enable = true;
|
||||
colorschemes.gruvbox = {
|
||||
enable = true;
|
||||
settings.transparent_mode = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue