Skip to content

Instantly share code, notes, and snippets.

@LuRsT
Created August 21, 2013 13:43
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LuRsT/6294620 to your computer and use it in GitHub Desktop.
Save LuRsT/6294620 to your computer and use it in GitHub Desktop.
Basic vim config file
syntax on
colorscheme desert
filetype plugin indent on
" 256 colors
set t_Co=256
set backspace=indent,eol,start
set cmdheight=2
set fileencodings=ucs-bom,utf-8,default,latin1
set helplang=en
set history=500
set hlsearch
set incsearch
set ruler
set shiftwidth=4
set showcmd
set tabstop=4
set termencoding=utf-8
set encoding=utf-8
set wildmenu
set number
set smartindent
set autoindent
set cursorline
set showmatch
set smartcase
set expandtab
@LuRsT
Copy link
Author

LuRsT commented Aug 22, 2013

Use this command to automatically use this config

curl https://gist.githubusercontent.com/LuRsT/6294620/raw/f8569668d2d82cbd1f1ee9bc202bf17f59637b38/.vimrc > ~/.vimrc 

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment