Last active
February 10, 2016 13:08
-
-
Save OzieWest/307103a5241dcb9ee6ee to your computer and use it in GitHub Desktop.
.vimrc
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=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 darkblue | |
| if has('win32') | |
| set guifont=Lucida_Console:h12:cRUSSIAN:: | |
| else | |
| set guifont=Terminus\ 14 | |
| endif | |
| endif | |
| if has('gui') | |
| if has('win32') | |
| au GUIEnter * call libcallnr('maximize', 'Maximize', 1) | |
| elseif has('gui_gtk2') | |
| au GUIEnter * :set lines=99999 columns=99999 | |
| endif | |
| endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment