add tree file view, and modify scrollbar

This commit is contained in:
2023-04-03 09:34:31 +00:00
parent 2da3e86425
commit 7c5d3eff78
7 changed files with 58 additions and 12 deletions

View File

@ -71,11 +71,3 @@ a.nvim_create_autocmd('FileType', {
pattern = '*',
command = 'hi NonText guifg=bg'
})
-- source and compile lua conf when written
local packer_group = a.nvim_create_augroup('Packer', { clear = true })
vim.api.nvim_create_autocmd('BufWritePost', {
command = 'source <afile>',
group = packer_group,
pattern = vim.fn.expand '$MYVIMRC',
})