-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.vimrc
More file actions
28 lines (22 loc) · 664 Bytes
/
.vimrc
File metadata and controls
28 lines (22 loc) · 664 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
execute pathogen#infect()
filetype plugin indent on
set omnifunc=syntaxcomplete#Complete
set expandtab
set smarttab
set softtabstop=4
set shiftwidth=4
set number
set mouse=a
set list
set ai
set si
set clipboard=unnamed
syntax enable
set background=dark
colorscheme Tomorrow-Night-Eighties
map <C-n> :NERDTreeToggle<CR>
autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTreeType") && b:NERDTreeType == "primary") | q | endif
let g:airline_powerline_fonts = 1
let g:neocomplcache_enable_at_startup = 1
let g:ctrlp_custom_ignore = '\v[\/](node_modules|target|dist|vendor|tmp)|(\.(swp|ico|git|svn))$'
autocmd BufNewFile,BufRead Berksfile set filetype=ruby