vim.opt.background = "dark" vim.opt.clipboard = "" vim.opt.cmdheight = 1 vim.opt.expandtab = true vim.opt.foldmethod = "syntax" vim.opt.foldnestmax = 150 vim.opt.grepprg = vim.fn.executable("rg") and "rg --vimgrep" or nil vim.opt.guifont = { "VictorMono NF", "Hack Nerd Font Mono", ":h10" } vim.opt.listchars = { tab = "> ", extends = ">", precedes = "<", space = "ยท" } vim.opt.number = true vim.opt.relativenumber = false vim.opt.shiftwidth = 4 vim.opt.signcolumn = "auto" vim.opt.spell = false vim.opt.tabstop = 4 vim.opt.textwidth = 120 vim.opt.wrap = true vim.opt.path:append("**") -- recursive search for find -- Globals vim.g.rust_recommended_style = 0