chore(nvim): remove unused plugins

main
mandlm 2024-07-13 20:15:21 +02:00
parent 2741e13657
commit d1378a4932
Signed by: mandlm
GPG Key ID: 4AA25D647AA54CC7
2 changed files with 1 additions and 12 deletions

View File

@ -12,8 +12,6 @@
# theme
nvim-solarized-lua
vim-bbye
ansible-vim
# auto-close brackets, etc
nvim-autopairs
@ -41,11 +39,8 @@
indent-blankline-nvim
plenary-nvim
vim-illuminate
registers-nvim
vim-surround
editorconfig-nvim
# git
gitsigns-nvim
vim-fugitive
@ -136,12 +131,6 @@
lua << EOF
vim.o.guifont = "DejaVu Sans Mono:h10"
if vim.g.neovide then
vim.g.neovide_fullscreen = true
vim.g.neovide_cursor_animation_length = 0.01
vim.g.neovide_cursor_trail_length = 0.01
end
${builtins.readFile ./keymaps.lua }
${builtins.readFile ./options.lua }
${builtins.readFile ./commands.lua }

View File

@ -60,7 +60,7 @@ vim.api.nvim_create_autocmd("TermOpen", {
})
-- buffer closing
nnoremap("gq", ":Bdelete<CR>")
nnoremap("gq", ":bdelete<CR>")
-- toggle search highlighting
vim.cmd('nnoremap <expr> * v:hlsearch ? ":nohlsearch<cr>" : "*"')