Vim setup for ISIS
Jump to navigation
Jump to search
Listed below are a few useful VIM shortcuts for the use of ISIS. The shortcuts need to be added to the .vimrc file in order to work.
General useful commands:
Use jk instead of <ESC> to exit insert mode:
inoremap jk <ESC>
Turn on syntax highlighting:
syntax on
Turn on line number displaying:
set number
Highlight all search results when searching through code:
set hlsearch
Personal choice: ignore case when searching
set ignorecase
Also show search results already while typing:
set incsearch
Automatically copy current indentation to newlines
set autoindent
ISIS specific settings: