VIM setup for ISIS

From Remeis-Wiki
Revision as of 16:44, 8 February 2024 by Zalot (talk | contribs) (Created page with "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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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: