remove vim-go

This commit is contained in:
Beric Bearnson 2024-03-28 11:38:21 -06:00
parent aedab6147f
commit fbc4f207b9
2 changed files with 2 additions and 4 deletions

View File

@ -91,6 +91,7 @@ vim.g.mapleader = ' '
vim.g.maplocalleader = ' '
vim.cmd.colorscheme 'habamax'
vim.cmd [[command! -nargs=0 Q :q]]
-- [[ Setting options ]]
-- See `:help vim.opt`
@ -101,7 +102,7 @@ vim.cmd.colorscheme 'habamax'
vim.opt.number = true
-- You can also add relative line numbers, for help with jumping.
-- Experiment for yourself to see if you like it!
-- vim.opt.relativenumber = true
vim.opt.relativenumber = true
-- Enable mouse mode, can be useful for resizing splits for example!
vim.opt.mouse = 'a'

View File

@ -15,7 +15,4 @@ return {
cmp.event:on('confirm_done', cmp_autopairs.on_confirm_done())
end,
},
{
'fatih/vim-go',
},
}