-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvimrc
64 lines (56 loc) · 1.62 KB
/
vimrc
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
set nocompatible
set shell=/usr/local/bin/fish
"Vundle - Package manager
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
"vim +BundleInstall +qall
Bundle 'gmarik/vundle'
Bundle 'majutsushi/tagbar'
Bundle 'Lokaltog/vim-powerline'
Bundle 'scrooloose/nerdtree'
Bundle 'ervandew/supertab'
Bundle 'kien/ctrlp.vim'
Bundle 'tpope/vim-fugitive'
Bundle 'mileszs/ack.vim'
Bundle 'dterei/VimBookmarking'
Bundle 'tpope/vim-fireplace'
Bundle 'guns/vim-clojure-static'
Bundle 'amdt/vim-niji'
Bundle 'vim-scripts/fish-syntax'
Bundle 'scrooloose/nerdcommenter'
Bundle 'altercation/vim-colors-solarized'
Bundle 'bronson/vim-trailing-whitespace'
set hlsearch "highlight searched things
set incsearch "incremental search
set laststatus=2 "show status line
set ignorecase "ignore case
set textwidth=0
set cursorline
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=2
set tabstop=2
set encoding=utf-8
set background=dark
"set mouse=a "enable mouse
syntax enable
"colorscheme molokai
colorscheme solarized
filetype plugin indent on
"keymaps
nnoremap <silent> <Space> :nohlsearch<Bar>:echo<CR>
"ctr+p
set runtimepath^=~/.vim/bundle/ctrlp.vim
let g:ctrlp_map = '<c-p>'
let g:ctrlp_cmd = 'CtrlP'
"Bookmarks
"map <D><F2> :ToggleBookmark<cr>
"map <C-m>n :NextBookmark<cr>
"map <C-m>b :PreviousBookmark<cr>
"NerdTree Stuff
let NERDTreeIgnore=['\.pyc$', '\.rbc$', '\~$','\.png'] "Ignore file types
map <C-n>n :NERDTreeToggle<CR>
let NERDTreeShowBookmarks=1 "Display bookmarks at startup
let g:NERDTreeChDirMode=2 "When open folder on nerdtree move to the folder