first commit
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
{
|
||||
plugins = {
|
||||
bufferline.enable = true;
|
||||
web-devicons.enable = true;
|
||||
};
|
||||
}
|
||||
@@ -0,0 +1,55 @@
|
||||
|
||||
{
|
||||
# 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;
|
||||
|
||||
};
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user