diff options
author | Cody Hiar <cody@hiar.ca> | 2020-04-16 15:13:41 -0600 |
---|---|---|
committer | Cody Hiar <cody@hiar.ca> | 2020-04-16 15:13:41 -0600 |
commit | 732574d9af23e3a7913ac8c7ed350e3ef2db764b (patch) | |
tree | 41ac46e1cac8a2b4236bd6802e5a801c0d8b4837 /plugin | |
parent | a5fd36fa8a47238e67f1f645764e41bf43d96c05 (diff) |
Add nostartofline
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/vim-options.vim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugin/vim-options.vim b/plugin/vim-options.vim index 87fc2a7..919ddb5 100644 --- a/plugin/vim-options.vim +++ b/plugin/vim-options.vim @@ -18,7 +18,8 @@ set path=** " Allow commands like 'gf' to find files set wildignore=*/app/cache,*/vendor,*/env,*.pyc,*/venv,*/__pycache__,*/venv " Ignore folders set sessionoptions+=globals " Append global variables to the default session options (Window Names) set backspace=2 " Make backspace work like most other programs -set hidden " Allow hidden buffers +set hidden " Allow hidden buffers, no complain about unsaved work +set nostartofline " Don't jump cursor to start of line " Custom status line |