Added auto-commands for persistance of the cursor, folds, and also centering the text vertically on insert-mode.
parent
f3e265ca12
commit
2ec62e506a
@ -1,3 +1,2 @@
|
|||||||
require "user.options"
|
require "user.options"
|
||||||
|
require "user.autocmds"
|
||||||
|
|
||||||
|
@ -0,0 +1,24 @@
|
|||||||
|
-- Embedded Vim Auto-command, that adds file cursor location persistance.
|
||||||
|
vim.cmd
|
||||||
|
[[
|
||||||
|
augroup line_return
|
||||||
|
au!
|
||||||
|
au BufReadPost *
|
||||||
|
\ if line("'\"") > 0 && line("'\"") <= line("$") |
|
||||||
|
\ execute 'normal! g`"zvzz' |
|
||||||
|
\ endif
|
||||||
|
augroup END
|
||||||
|
]]
|
||||||
|
|
||||||
|
-- Vertically center the buffer, each time I go into insert mode.
|
||||||
|
vim.cmd
|
||||||
|
[[
|
||||||
|
autocmd InsertEnter * norm zz
|
||||||
|
]]
|
||||||
|
|
||||||
|
-- Automatically save & re-fold Documents, when exiting & re-entering the file.
|
||||||
|
vim.cmd
|
||||||
|
[[
|
||||||
|
autocmd BufWinLeave *.* mkview " Auto-save Folds before leaving a buffer.
|
||||||
|
autocmd BufWinEnter *.* silent loadview " Auto-re-load saved folds.
|
||||||
|
]]
|
Loading…
Reference in new issue