-- neovim/vim options local opt = vim.opt opt.guicursor = "" -- For indentation opt.relativenumber = true opt.number = true opt.tabstop = 2 opt.softtabstop = 2 opt.shiftwidth = 2 opt.smartindent = true opt.hlsearch = false opt.incsearch = true opt.termguicolors = true vim.g.rust_recommended_style = 0 -- Keybinds local keybind = vim.keymap.set keybind('n', "hh", 'lua vim.diagnostic.setqflist()') keybind('v', "ii", '\"+y') keybind('n', "bb", 'bprevious') keybind('n', "nn", 'bnext') keybind('n', ",,", 'bdel') keybind('i', "jk", '') -- For justin