56 lines
1.2 KiB
Nix
56 lines
1.2 KiB
Nix
|
|
{
|
|
# Import all your configuration modules here
|
|
# imports = [ ./bufferline.nix ];
|
|
|
|
clipboard.register = "unnamedplus";
|
|
colorschemes.nord.enable = true;
|
|
|
|
opts = {
|
|
number = true; # Show line numbers
|
|
relativenumber = true; # Show relative line numbers
|
|
shiftwidth = 2; # Tab width should be 2
|
|
};
|
|
|
|
plugins = {
|
|
web-devicons.enable = true;
|
|
lualine.enable = true;
|
|
oil.enable = true;
|
|
commentary.enable = true;
|
|
nvim-tree.enable = true;
|
|
treesitter.enable = true;
|
|
fugitive.enable = true;
|
|
vim-surround.enable = true;
|
|
which-key.enable = true;
|
|
openscad.enable = true;
|
|
lazygit.enable = true;
|
|
toggleterm.enable = true;
|
|
indent-blankline.enable = true;
|
|
illuminate.enable = true;
|
|
bufferline.enable = true;
|
|
direnv.enable = true;
|
|
fzf-lua.enable = true;
|
|
codecompanion = { enable = true; };
|
|
|
|
# enable all auto completion
|
|
cmp.enable = true;
|
|
cmp.autoEnableSources = true;
|
|
|
|
# Good old Telescope
|
|
telescope = {
|
|
enable = true;
|
|
extensions = {
|
|
fzf-native = {
|
|
enable = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
# Nix expressions in Neovim
|
|
nix.enable = true;
|
|
|
|
};
|
|
|
|
|
|
}
|