diff options
author | Squibid <me@zacharyscheiman.com> | 2023-04-03 09:34:31 +0000 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2023-04-03 09:34:31 +0000 |
commit | 7c5d3eff786bef884022cc813448bb085ba4eccd (patch) | |
tree | d3f936c71555e259318116272e9e478954fa5eeb /lua/core/auto.lua | |
parent | 2da3e8642576b2b97544a94a91d16779914a3de1 (diff) | |
download | nvim-1.0.tar.gz nvim-1.0.tar.bz2 nvim-1.0.zip |
add tree file view, and modify scrollbarv1.0
Diffstat (limited to '')
-rw-r--r-- | lua/core/auto.lua | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lua/core/auto.lua b/lua/core/auto.lua index 81270bf..2403c5e 100644 --- a/lua/core/auto.lua +++ b/lua/core/auto.lua @@ -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', -}) |