We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c81a18 commit 5b9fffeCopy full SHA for 5b9fffe
1 file changed
fnl/core.fnl
@@ -24,7 +24,10 @@
24
:command "setlocal number"})
25
;; delete empty space from the end of lines on every save
26
(vim.api.nvim_create_autocmd :BufWritePre
27
- {:group g :command "%s/\\s\\+$//e"}))
+ {:group g :command "%s/\\s\\+$//e"})
28
+ ;; equalize windows on terminal resize
29
+ (vim.api.nvim_create_autocmd :VimResized
30
+ {:group g :command "wincmd ="}))
31
(let [g (vim.api.nvim_create_augroup :filetype-mappings {:clear true})]
32
(vim.api.nvim_create_autocmd :FileType
33
{:group g
0 commit comments