-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvimrc
116 lines (87 loc) · 2.14 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
set autoread
set shell=/bin/bash
"BUNDLE"
set nocompatible " be iMproved, required
filetype off " required
set rtp+=/usr/local/opt/fzf
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call plug#begin()
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
Plug 'junegunn/fzf.vim'
" language
Plug 'sheerun/vim-polyglot'
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'ruanyl/vim-fixmyjs'
Plug 'airblade/vim-gitgutter'
Plug 'ervandew/supertab'
Plug 'MarcWeber/vim-addon-mw-utils'
Plug 'mattn/emmet-vim'
Plug 'mileszs/ack.vim'
Plug 'scrooloose/nerdtree'
Plug 'tomtom/tlib_vim'
Plug 'tpope/vim-dispatch'
Plug 'tpope/vim-endwise'
Plug 'tpope/vim-surround'
Plug 'kristijanhusak/vim-hybrid-material'
call plug#end()
"Allow working with buffers"
set hidden
set t_Co=256 " Explicitly tell vim that the terminal supports 256 colors
"Set leader to comma"
let mapleader = ","
"Linenumbers"
set number
"Show trailing white spaces"
set list listchars=tab:\ \ ,trail:·
"Open FZF using Ctrl-P
nnoremap <c-p> :GFiles<cr>
"Grep using ag
set grepprg=ag\ --nogroup\ --nocolor
let g:ackprg = 'ag --vimgrep'
"Colorscheme
syntax enable
set termguicolors
set synmaxcol=200
set background=dark
colorscheme material-theme
let g:enable_bold_font = 1
"Autoindentation"
filetype indent plugin on
"Automatically reload vimrc when it is changed"
autocmd! bufwritepost vimrc source ~/.dotfiles/vimrc
"Soft Tabs"
set tabstop=2
set softtabstop=2
set shiftwidth=2
set expandtab
"Fix backspace key"
set backspace=2
fixdel
"SWP DIR"
set backupdir=~/.vim/tmp
set directory=~/.vim/tmp
"Sane Movement with wrap"
vmap <D-j> gj
vmap <D-k> gk
vmap <D-4> g$
vmap <D-6> g^
vmap <D-0> g^
nmap <D-j> gj
nmap <D-k> gk
nmap <D-4> g$
nmap <D-6> g^
nmap <D-0> g^
"Enable mouse support"
set mouse=a
"Airline Config"
let g:airline_theme='solarized'
let g:airline_theme = "hybrid"
set laststatus=2
au BufRead,BufNewFile *.jbuilder set filetype=ruby
" Fix JS on sae
let g:fixmyjs_use_local = 1
let g:fixmyjs_rc_path = '~/projects/my/.eslintrc.js'
au BufWritePre *.js :Fixmyjs
au BufWritePre *.jsx :Fixmyjs