vim.opt.guicursor = "" vim.opt.nu = true vim.opt.relativenumber = true vim.opt.tabstop = 4 vim.opt.softtabstop = 4 vim.opt.shiftwidth = 4 vim.opt.expandtab = true vim.opt.smartindent = true vim.opt.wrap = false vim.opt.swapfile = false vim.opt.backup = false vim.opt.backupdir = "C:/Windows/Temp" vim.opt.undodir = "C:/Users/zakla/.undodir" vim.opt.undofile = true -- vim.opt.shellcmdflag = "" -- vim.opt.clipboard = 'unnamedplus' vim.schedule(function() vim.opt.clipboard = 'unnamedplus' end) vim.opt.hlsearch = false vim.opt.incsearch = true vim.opt.termguicolors = true vim.opt.scrolloff = 16 vim.opt.signcolumn = "yes" vim.opt.isfname:append("@-@") vim.opt.updatetime = 50 vim.opt.gdefault = true vim.opt.timeoutlen = 300 vim.opt.colorcolumn = "120" -- views can only be fully collapsed with the global statusline -- vim.opt.laststatus = 3 -- Make line numbers default vim.opt.number = true vim.opt.mouse = 'a' vim.opt.showmode = false vim.schedule(function() vim.opt.clipboard = 'unnamedplus' end) vim.opt.breakindent = true vim.opt.splitright = true vim.opt.splitbelow = true vim.opt.list = true vim.opt.listchars = { tab = '» ', trail = '·', nbsp = '␣' } vim.opt.inccommand = 'split' vim.opt.cursorline = true vim.api.nvim_create_autocmd('TextYankPost', { desc = 'Highlight when yanking (copying) text', group = vim.api.nvim_create_augroup('kickstart-highlight-yank', { clear = true }), callback = function() vim.highlight.on_yank() end, }) vim.cmd [[ augroup TerminalStuff autocmd BufWinEnter,WinEnter term://* startinsert autocmd BufLeave term://* stopinsert augroup END ]]