Skip to content

Instantly share code, notes, and snippets.

@kborovik
Last active November 19, 2021 03:26
Show Gist options
  • Save kborovik/408f5f621a2f852c7fa9098c2678c734 to your computer and use it in GitHub Desktop.
Save kborovik/408f5f621a2f852c7fa9098c2678c734 to your computer and use it in GitHub Desktop.
VIM configuration file
" Convert TAB to spaces (2)
set tabstop=2
set shiftwidth=2
set expandtab
set autoindent
set complete+=kspell
" set number
" Show hidden characters
set listchars=eol:$,tab:>-,trail:~,extends:>,precedes:<,space:.
map <F3> :set list! list? <CR>
" Search settings
set ignorecase
set smartcase
set hlsearch
noremap <F4> :set hlsearch! hlsearch? <CR>
" Spell settings
set spelllang=en_us
map <F5> :set spell! spell? <CR>
" Set color scheme
syntax on
set termguicolors
colorscheme onehalfdark
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment