39 lines
645 B
Nix
39 lines
645 B
Nix
{
|
|
# General
|
|
undofile = true;
|
|
backup = false;
|
|
writebackup = false;
|
|
mouse = "a";
|
|
|
|
# Appearance
|
|
breakindent = true;
|
|
cursorline = false;
|
|
linebreak = true;
|
|
number = true;
|
|
relativenumber = true;
|
|
|
|
# Editing
|
|
ignorecase = true;
|
|
incsearch = true;
|
|
infercase = true;
|
|
smartcase = true;
|
|
smartindent = true;
|
|
|
|
hidden = true;
|
|
title = true;
|
|
tabstop = 2;
|
|
scrolloff = 8;
|
|
shiftwidth = 2;
|
|
numberwidth = 4;
|
|
showcmd = true;
|
|
hlsearch = true;
|
|
swapfile = false;
|
|
expandtab = true;
|
|
updatetime = 100;
|
|
timeoutlen = 1000;
|
|
sidescrolloff = 8;
|
|
termguicolors = true;
|
|
splitkeep = "screen";
|
|
fileencoding = "utf-8";
|
|
}
|