local op = vim.opt op.nu = true op.relativenumber = true op.softtabstop = 2 op.shiftwidth = 2 op.expandtab = false op.cindent = true op.wrap = true op.swapfile = false op.backup = false op.undodir = GetHomeDir() .. "/.vim/undodir" op.undofile = true op.hlsearch = false op.incsearch = true op.termguicolors = true op.cursorline = true op.scrolloff = 8 op.autoread = true op.updatetime = 50 op.colorcolumn = '80' if vim.fn.executable('rg') > 0 then op.grepprg = 'rg --vimgrep' end -- netrw settings -- required to allow mm (mark-move) command to move file vim.g.netrw_keepdir = 1 vim.g.netrw_banner = 0 --vim.g.netrw_browse_split = 4 vim.g.netrw_altv = 1 --vim.g.netrw_liststyle = 3