Remove indent blankline

This commit is contained in:
juan 2022-11-21 10:26:10 +08:00
parent f94ba6234b
commit 3e2ea4e66c
Signed by: juan
GPG Key ID: 5C1E5093C74F1DC7
2 changed files with 1 additions and 6 deletions

View File

@ -48,7 +48,7 @@ map('', '<leader>tt', ':TagbarToggle<cr>', { silent = true })
map('', '<C-n>', ':NvimTreeToggle<cr>', { silent = true })
-- toggle formatter
map('', '<leader>fm', ':lua vim.lsp.buf.formatting()<cr>', { silent = true })
map('', '<leader>fm', ':lua vim.lsp.buf.format({async = true})<cr>', { silent = true })
-- toggle Hop
map('', '<leader>b', ':HopWordBC<cr>', { silent = true })

View File

@ -133,11 +133,6 @@ return require('packer').startup(function(use)
}
-- eye-candy
use {
'lukas-reineke/indent-blankline.nvim',
after = { 'nvim-treesitter' },
config = function() require 'plugins.indent-blankline' end
}
use {
'lewis6991/gitsigns.nvim',
event = 'UIEnter',