nix-config/users/tacocat/neovim/default.nix

35 lines
615 B
Nix
Raw Normal View History

2024-02-10 15:23:56 +00:00
{pkgs, ...}: {
programs.nixvim = {
enable = true;
colorschemes.base16 = {
enable = true;
2024-02-12 20:25:30 +00:00
colorscheme = "darkmoss";
2024-02-10 15:23:56 +00:00
setUpBar = false;
};
clipboard = {
providers.wl-copy.enable = true;
register = "unnamedplus";
};
options = {
number = true;
relativenumber = true;
tabstop = 2;
shiftwidth = 2;
expandtab = false;
scrolloff = 5;
autoindent = true;
copyindent = true;
2024-02-12 20:25:30 +00:00
signcolumn = "yes";
2024-02-12 20:48:47 +00:00
cursorline = true;
2024-02-10 15:23:56 +00:00
};
plugins = {
lightline = {
enable = true;
};
2024-02-12 20:48:47 +00:00
gitsigns = {
2024-02-10 15:23:56 +00:00
enable = true;
};
};
};
}