Skip to content

Instantly share code, notes, and snippets.

@a-nikolaev
Last active February 11, 2017 05:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save a-nikolaev/a8bfc7988319944608b57f06df2376ea to your computer and use it in GitHub Desktop.
Save a-nikolaev/a8bfc7988319944608b57f06df2376ea to your computer and use it in GitHub Desktop.
set autoindent
set cmdheight=2 "command bar is 2 high
set backspace=indent,eol,start "set backspace function
syntax on
filetype on
filetype plugin on
filetype indent on
set hlsearch "highlight searched things
set incsearch "incremental search
set ignorecase "ignore case
set textwidth=0
set autoread "auto read when file is changed from outside
set ruler "show current position
set nu "show line number
set showmatch "show maching braces
set shiftwidth=4
set tabstop=4
" set expandtab
set t_Co=256
" colorscheme slate
" colorscheme delek
" colorscheme wombat256mod
" colorscheme harlequin
colorscheme desertink
set clipboard=unnamed
" Background colors in vim
if &term =~ '256color'
" disable Background Color Erase (BCE) so that color schemes
" render properly when inside 256-color tmux and GNU screen.
" see also http://sunaku.github.io/vim-256color-bce.html
set t_ut=
endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment