-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.vimrc
More file actions
66 lines (40 loc) · 1.22 KB
/
Copy path.vimrc
File metadata and controls
66 lines (40 loc) · 1.22 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'justinmk/vim-syntax-extra' " Enhance C definitions
Plugin 'majutsushi/tagbar' " Search for tags
Plugin 'slim-template/vim-slim.git' " Provides syntax highlighting
Plugin 'dag/vim2hs' " Provide Haskell Highlighting
Plugin 'lilydjwg/colorizer' " Gives color when color code is writen
Plugin 'junegunn/goyo.vim' " Changes screen to clean mode
Plugin 'Raimondi/delimitMate' " Create close bracket automatically
Plugin 'fholgado/minibufexpl.vim'
Plugin 'luochen1990/rainbow' " Colorize the matching
let g:rainbow_active = 1
call vundle#end()
filetype plugin indent on
" Colors {{{
syntax enable
" }}}
set nocompatible
filetype plugin indent on
syntax on
set nu
set wildmenu
set showcmd
set wildmenu
set showmatch
set incsearch
set hlsearch
set autoindent
set backspace=indent,eol,start
set shiftwidth=4
set softtabstop=4
set expandtab
set visualbell
set confirm
set laststatus=2
let g:neocomplete#enable_at_startup = 1
highlight LineNr term=bold cterm=NONE ctermfg=DarkGrey ctermbg=NONE gui=NONE guifg=DarkGrey guibg=NONE