2024-03-24 23:39:49 +01:00
|
|
|
{
|
|
|
|
configs,
|
|
|
|
pkgs,
|
|
|
|
helpers,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}: {
|
|
|
|
programs.nixvim = {
|
|
|
|
enable = true;
|
|
|
|
viAlias = true;
|
|
|
|
vimAlias = true;
|
|
|
|
|
|
|
|
colorschemes.base16 = {
|
|
|
|
colorscheme = "gruvbox-dark-medium";
|
|
|
|
enable = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
clipboard.providers.xsel.enable = true;
|
|
|
|
};
|
2024-03-25 04:09:58 +01:00
|
|
|
home.sessionVariables = {
|
|
|
|
EDITOR = "nvim";
|
|
|
|
VISUAL = "nvim";
|
|
|
|
};
|
2024-03-31 23:23:56 +02:00
|
|
|
|
|
|
|
programs.nushell.extraEnv = ''
|
|
|
|
$env.EDITOR = nvim
|
|
|
|
$env.VISUAL = nvim
|
|
|
|
'';
|
|
|
|
|
2024-03-24 23:39:49 +01:00
|
|
|
imports = [
|
|
|
|
./keybinds.nix
|
|
|
|
./options.nix
|
|
|
|
./simpleplugins.nix
|
|
|
|
./lualine.nix
|
|
|
|
./nvim-tree.nix
|
|
|
|
./toggleterm.nix
|
|
|
|
./gitsigns.nix
|
|
|
|
./which-key.nix
|
|
|
|
./telescope.nix
|
2024-03-27 17:30:17 +01:00
|
|
|
./treesitter
|
|
|
|
./cmp
|
|
|
|
./lsp
|
2024-03-24 23:39:49 +01:00
|
|
|
];
|
|
|
|
}
|