Skip to content

Commit

Permalink
fix: sort nvim options
Browse files Browse the repository at this point in the history
  • Loading branch information
FredeHoey committed Feb 18, 2025
1 parent 5c1009f commit 60197fb
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions modules/nixvim/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -196,28 +196,28 @@
};

opts = {
cmdheight = 0;
completeopt = "menuone,noinsert,noselect";
expandtab = true;
fixeol = false;
foldenable = false;
guifont = "Iosevka Nerd Font:h10";
hidden = true;
ignorecase = true;
inccommand = "nosplit";
jumpoptions = "stack";
laststatus = 3;
mousemodel = "extend";
number = true;
scrollback = 100000;
scrolloff = 15;
shiftwidth = 4;
signcolumn = "yes:1";
smartcase = true;
tabstop = 4;
wildmode = "longest,list";
laststatus = 3;
inccommand = "nosplit";
termguicolors = true;
fixeol = false;
signcolumn = "yes:1";
guifont = "Iosevka Nerd Font:h10";
mousemodel = "extend";
cmdheight = 0;
foldenable = false;
jumpoptions = "stack";
scrollback = 100000;
undofile = true;
wildmode = "longest,list";
};

keymaps = [
Expand Down

0 comments on commit 60197fb

Please sign in to comment.