update vim config

This commit is contained in:
2025-10-13 15:17:04 -05:00
parent 68ee7894a0
commit 59476285df

View File

@@ -19,6 +19,41 @@
enable = true; enable = true;
}; };
options = {
clipboard = "unnamedplus";
# line numbers
number = true;
numberwidth = 2;
relativenumber = true;
# tabs and indentation
tabstop = 2;
shiftwidth = 2;
softtabstop = -1;
expandtab = true;
smarttab = true;
autoindent = true;
# search
ignorecase = true;
smartcase = true;
# files and backups
backup = false;
writebackup = false;
undofile = true;
swapfile = true;
# wrapping
wrap = true;
linebreak = true;
breakindent = true;
termguicolors = true;
autoread = true;
};
languages = { languages = {
enableTreesitter = true; enableTreesitter = true;