-
Notifications
You must be signed in to change notification settings - Fork 1
/
default.nix
42 lines (40 loc) · 857 Bytes
/
default.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{ pkgs, ... }: {
# Import all your configuration modules here
imports = [
./alpha.nix
./cmp.nix
./copilot.nix
./git.nix
./goyo.nix
./keymaps.nix
./lsp.nix
./lspkind.nix
./lualine.nix
./luasnip.nix
#./markdown.nix
./neo-tree.nix
./telescope.nix
./toggle-term.nix
];
config = {
extraPlugins = [
pkgs.vimPlugins.nightfox-nvim
pkgs.vimPlugins.kanagawa-nvim
pkgs.vimPlugins.oxocarbon-nvim
pkgs.vimPlugins.nightfly
];
colorscheme = "nightfox";
clipboard.providers.wl-copy.enable = true;
extraConfigVim = "set foldlevel=10";
plugins = {
indent-blankline.enable = true;
treesitter.enable = true;
transparent.enable = true;
yazi.enable = true;
};
opts = {
number = true;
relativenumber = true;
};
};
}