Last active
August 29, 2015 14:24
-
-
Save eovolkov/3ff81cb3299266feb2cb to your computer and use it in GitHub Desktop.
Useful settings for VIM
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set tabstop=2 | |
set shiftwidth=2 | |
set softtabstop=2 | |
set smarttab | |
set expandtab | |
set shiftround | |
" Всегда отображать табы | |
set showtabline=2 | |
" Автоотступы для новых строк | |
set autoindent | |
set smartindent | |
" Подсветка результатов поиска | |
set hlsearch | |
" Цвет для комментариев | |
color desert | |
" Или зеленый | |
" highlight Comment ctermfg=green |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment