23 lines
495 B
Nix
23 lines
495 B
Nix
{...}: {
|
|
config.opts = {
|
|
# General
|
|
number = true;
|
|
relativenumber = true;
|
|
showmode = false;
|
|
swapfile = false;
|
|
clipboard = "unnamedplus";
|
|
conceallevel = 1;
|
|
updatetime=100;
|
|
undofile = true;
|
|
|
|
# Tabs & Spaces
|
|
tabstop = 2;
|
|
softtabstop = 2;
|
|
shiftwidth = 2;
|
|
expandtab = true;
|
|
|
|
# Using this config for sessionoptions is recommended:
|
|
sessionoptions = "blank,buffers,curdir,folds,help,tabpages,winsize,winpos,terminal,localoptions";
|
|
};
|
|
}
|