diff options
Diffstat (limited to 'inc')
| -rw-r--r-- | inc/basics.vim | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/inc/basics.vim b/inc/basics.vim index 2110578..1ac112a 100644 --- a/inc/basics.vim +++ b/inc/basics.vim @@ -34,6 +34,14 @@ nmap <leader>n :set invnu<CR> " Use \-l in normal mode to toggle listchars nmap <leader>l :set list!<CR> +" Use \-s to pop open a spelling menu. use ]s to search forwards and [s to go +" backwards. +" Apparently this also doesn't work if spell checking isn't enabled +" at the time you enable it. +set spell +nnoremap \s ea<C-X><C-S> +set nospell + " set hidden " This will allow you to change buffers w/o saving " Omni completion, c-x c-o in insert/append mode |
