diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-16 14:06:08 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-10-16 14:06:08 +0200 |
commit | ec825863530260d008350e051873a03ceb031de3 (patch) | |
tree | 75df3c6bea3dfd3ac303ddc3f655633362862a3b /fnl/config/autocmd.fnl | |
parent | 9e52a45f148156405a2d563d59710d18e5fe31b1 (diff) |
Add undotree and remove lir
Diffstat (limited to 'fnl/config/autocmd.fnl')
-rw-r--r-- | fnl/config/autocmd.fnl | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/fnl/config/autocmd.fnl b/fnl/config/autocmd.fnl index 84d9e66..9bd59cc 100644 --- a/fnl/config/autocmd.fnl +++ b/fnl/config/autocmd.fnl @@ -18,18 +18,9 @@ (create-autocmd :FileType {:pattern :qf :command "set nobuflisted"}) -(create-autocmd :FileType {:pattern :lir - :callback (fn [] - (tset vim.opt_local :number false) - (tset vim.opt_local :relativenumber - false))}) - (create-autocmd :FileType {:pattern [:gitcommit :markdown] :command "setlocal wrap"}) -(create-autocmd :FileType {:pattern [:gitcommit :markdown :org :plaintex] - :command "setlocal spell"}) - (create-autocmd :VimResized {:command "tabdo wincmd ="}) (create-autocmd :BufWritePost |