copilot: disable until I actually have the will power to fix it :p

This commit is contained in:
kossLAN 2024-09-01 02:46:31 -04:00
parent 30c6c69557
commit bb6c005380
Signed by: kossLAN
SSH key fingerprint: SHA256:bdV0x+wdQHGJ6LgmstH3KV8OpWY+OOFmJcPcB0wQPV8
8 changed files with 33 additions and 194 deletions

View file

@ -7,6 +7,8 @@ local g = vim.g
g.mapleader = ' '
g.maplocalleader = ' '
vim.cmd('let g:telescope_debug = 1')
opt.compatible = false
-- Enable true colour support
@ -31,9 +33,9 @@ opt.spell = true
opt.spelllang = 'en'
opt.expandtab = true
opt.tabstop = 4
opt.softtabstop = 4
opt.shiftwidth = 4
opt.tabstop = 2
opt.softtabstop = 2
opt.shiftwidth = 2
opt.foldenable = true
opt.history = 2000
opt.nrformats = 'bin,hex' -- 'octal'
@ -44,14 +46,6 @@ opt.cmdheight = 0
opt.fillchars = [[eob: ,fold: ,foldopen:,foldsep: ,foldclose:]]
-- Restore cursor position
vim.api.nvim_create_autocmd({ 'BufReadPost' }, {
pattern = { '*' },
callback = function()
vim.api.nvim_exec2('silent! normal! g`"zv', { output = false })
end,
})
-- Configure Neovim diagnostic messages
local function prefix_diagnostic(prefix, diagnostic)