nixos-config/home-manager/stvnliu/nixvim/options.nix
Zhongheng Liu 101aee8193
feat: modified configuration to introduce ags, with extras
Revert displayScale to 1

Create AGS bar component configuration

Removed declarations for waybar
2024-08-19 17:33:37 +08:00

23 lines
425 B
Nix

{
config.opts = {
updatetime = 100; # Faster completion
number = true;
relativenumber = false;
autoindent = true;
clipboard = "unnamedplus";
expandtab = true;
shiftwidth = 2;
smartindent = true;
tabstop = 2;
ignorecase = true;
incsearch = true;
smartcase = true;
wildmode = "list:longest";
swapfile = false;
undofile = true; # Build-in persistent undo
};
}