Skip to content

Instantly share code, notes, and snippets.

@varomodt
Created September 28, 2013 13:43
Show Gist options
  • Save varomodt/6742202 to your computer and use it in GitHub Desktop.
Save varomodt/6742202 to your computer and use it in GitHub Desktop.
my current vimrc
set ai
set smartindent
set showtabline=2
set tabstop=4
set shiftwidth=4
set expandtab
set showcmd
set showmode
set ruler
set hlsearch
set foldenable
set foldmethod=syntax
set wrap
set history=1000
execute pathogen#infect()
filetype off
call pathogen#incubate()
filetype plugin on
filetype plugin indent on
syntax on
"colorscheme morning
scriptencoding utf-8
nnoremap th :tabfirst<CR>
nnoremap tj :tabnext<CR>
nnoremap tk :tabprev<CR>
nnoremap tl :tablast<CR>
nnoremap tt :tabedit<Space>
nnoremap tn :tabnext<CR>
nnoremap tN :tabnew<CR>
nnoremap tm :tabm<Space>
nnoremap td :tabclose<CR>
set guioptions=m
let g:vimclojure#HighlightBuiltins = 1
let g:vimclojure#ParenRainbow = 1
let vimclojure#NailgunClient = "/src/ext/vimclojure/client/ng"
let vimclogure#WantNailgun = 1
set noerrorbells
set novisualbell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment