2023-11-17 11:24:21 +00:00
|
|
|
|
local opt = vim.opt
|
|
|
|
|
|
2023-11-27 22:37:34 +00:00
|
|
|
|
opt.swapfile = false -- disable swapfiles because they are fucking garbage
|
2023-11-17 11:24:21 +00:00
|
|
|
|
opt.autowrite = true -- Enable auto write
|
|
|
|
|
opt.clipboard = "unnamedplus" -- Sync with system clipboard
|
|
|
|
|
opt.completeopt = "menu,menuone,noselect"
|
|
|
|
|
opt.conceallevel = 3 -- Hide * markup for bold and italic
|
|
|
|
|
opt.confirm = true -- Confirm to save changes before exiting modified buffer
|
|
|
|
|
opt.cursorline = true -- Enable highlighting of the current line
|
|
|
|
|
opt.expandtab = true -- Use spaces instead of tabs
|
|
|
|
|
opt.formatoptions = "jcroqlnt" -- tcqj
|
|
|
|
|
opt.grepformat = "%f:%l:%c:%m"
|
|
|
|
|
opt.grepprg = "rg --vimgrep"
|
|
|
|
|
opt.ignorecase = true -- Ignore case
|
|
|
|
|
opt.inccommand = "nosplit" -- preview incremental substitute
|
|
|
|
|
opt.laststatus = 3 -- global statusline
|
|
|
|
|
opt.list = true -- Show some invisible characters (tabs...
|
|
|
|
|
opt.mouse = "a" -- Enable mouse mode
|
|
|
|
|
opt.number = true -- Print line number
|
2024-01-02 22:44:49 +00:00
|
|
|
|
opt.pumblend = 0 -- Popup blend
|
2023-11-17 11:24:21 +00:00
|
|
|
|
opt.pumheight = 10 -- Maximum number of entries in a popup
|
|
|
|
|
opt.relativenumber = false -- Relative line numbers
|
|
|
|
|
opt.scrolloff = 4 -- Lines of context
|
|
|
|
|
opt.sessionoptions = { "buffers", "curdir", "tabpages", "winsize", "help", "globals", "skiprtp", "folds" }
|
|
|
|
|
opt.shiftround = true -- Round indent
|
|
|
|
|
opt.shiftwidth = 4 -- Size of an indent
|
|
|
|
|
opt.shortmess:append({ W = true, I = true, c = true, C = true })
|
|
|
|
|
opt.showmode = false -- Dont show mode since we have a statusline
|
|
|
|
|
opt.sidescrolloff = 8 -- Columns of context
|
|
|
|
|
opt.signcolumn = "yes" -- Always show the signcolumn, otherwise it would shift the text each time
|
|
|
|
|
opt.smartcase = false -- Don't ignore case with capitals
|
|
|
|
|
opt.smartindent = true -- Insert indents automatically
|
|
|
|
|
opt.spelllang = { "en" }
|
2023-11-27 22:37:34 +00:00
|
|
|
|
opt.splitbelow = false -- Put new windows below current
|
2023-11-17 11:24:21 +00:00
|
|
|
|
opt.splitkeep = "screen"
|
|
|
|
|
opt.splitright = true -- Put new windows right of current
|
|
|
|
|
opt.tabstop = 4 -- Number of spaces tabs count for
|
|
|
|
|
opt.termguicolors = true -- True color support
|
|
|
|
|
opt.timeoutlen = 300
|
|
|
|
|
opt.undofile = true
|
|
|
|
|
opt.foldcolumn = '1'
|
|
|
|
|
opt.foldlevel = 99
|
|
|
|
|
opt.foldlevelstart = 99
|
|
|
|
|
opt.showtabline = 2
|
|
|
|
|
opt.foldenable = true
|
|
|
|
|
opt.undolevels = 10000
|
|
|
|
|
opt.updatetime = 200 -- Save swap file and trigger CursorHold
|
|
|
|
|
opt.virtualedit = "block" -- Allow cursor to move where there is no text in visual block mode
|
|
|
|
|
opt.wildmode = "longest:full,full" -- Command-line completion mode
|
|
|
|
|
opt.winminwidth = 5 -- Minimum window width
|
|
|
|
|
opt.wrap = false -- Disable line wrap
|
|
|
|
|
opt.fillchars = {
|
|
|
|
|
foldopen = "",
|
|
|
|
|
foldclose = "",
|
|
|
|
|
fold = " ",
|
|
|
|
|
foldsep = " ",
|
|
|
|
|
diff = "╱",
|
|
|
|
|
eob = " ",
|
|
|
|
|
}
|