Skip to content

Commit

Permalink
options: persistence and ux (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
MikaelFangel authored Oct 22, 2023
1 parent 5009088 commit 64b4cfc
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion config/options.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,23 @@
{
config.options = {
updatetime = 100; # Faster completion

number = true;
relativenumber = true;

autoindent = true;
clipboard = "unnamedplus";
expandtab = true;
shiftwidth = 2;
smartindent = true;
tabstop = 2;
clipboard = "unnamedplus";

ignorecase = true;
incsearch = true;
smartcase = true;
wildmode = "list:longest";

swapfile = false;
undofile = true; # Build-in persistent undo
};
}

0 comments on commit 64b4cfc

Please sign in to comment.