Skip to content

Instantly share code, notes, and snippets.

@OzieWest
Last active February 19, 2016 08:51
Show Gist options
  • Select an option

  • Save OzieWest/8d850203ff84383f472e to your computer and use it in GitHub Desktop.

Select an option

Save OzieWest/8d850203ff84383f472e to your computer and use it in GitHub Desktop.
VIM config
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