Last active
February 19, 2016 08:51
-
-
Save OzieWest/8d850203ff84383f472e to your computer and use it in GitHub Desktop.
VIM config
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
| source $VIMRUNTIME/vimrc_example.vim | |
| source $VIMRUNTIME/mswin.vim | |
| behave mswin | |
| set nobackup | |
| set nowritebackup | |
| set number | |
| set tabstop=4 | |
| set shiftwidth=4 | |
| set smarttab | |
| set et | |
| set nowrap | |
| set ai | |
| set cin | |
| set showmatch | |
| set hlsearch | |
| set incsearch | |
| set ignorecase | |
| set lz | |
| set listchars=tab:·· | |
| set list | |
| set ffs=unix,dos,mac | |
| set fencs=utf-8,cp1251,koi8-r,ucs-2,cp866 | |
| if !has('gui_running') | |
| set mouse= | |
| endif | |
| set guioptions-=T | |
| set guioptions-=m | |
| if has('gui') | |
| colorscheme solarized | |
| if has('win32') | |
| set guifont=Fira\ Code:h12:cRUSSIAN:: | |
| else | |
| set guifont=Fira\ Code | |
| endif | |
| endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment