33 lines
634 B
Nix
33 lines
634 B
Nix
|
{
|
||
|
globals = {
|
||
|
mapleader = " ";
|
||
|
};
|
||
|
opts = {
|
||
|
encoding = "utf8";
|
||
|
background = "dark";
|
||
|
relativenumber = true;
|
||
|
number = true;
|
||
|
wrap = false;
|
||
|
expandtab = true;
|
||
|
incsearch = true;
|
||
|
laststatus = 3;
|
||
|
scrolloff = 5;
|
||
|
tabstop = 2;
|
||
|
shiftwidth = 2;
|
||
|
cursorline = true;
|
||
|
ignorecase = true;
|
||
|
smartcase = true;
|
||
|
swapfile = false;
|
||
|
backup = false;
|
||
|
undofile = true;
|
||
|
splitbelow = true;
|
||
|
splitright = true;
|
||
|
errorbells = false;
|
||
|
termguicolors = true;
|
||
|
showmode = false;
|
||
|
showtabline = 1;
|
||
|
signcolumn = "auto";
|
||
|
clipboard = "unnamedplus";
|
||
|
mouse = "a";
|
||
|
};
|
||
|
}
|