-
Notifications
You must be signed in to change notification settings - Fork 3
/
vimrc
193 lines (158 loc) · 4.49 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
set nocompatible
" Vim-plug
call plug#begin('~/.vim/bundle')
Plug 'junegunn/vim-plug'
Plug 'ervandew/supertab'
Plug 'altercation/vim-colors-solarized'
Plug 'chriskempson/base16-vim'
Plug 'sheerun/vim-polyglot'
Plug 'godlygeek/tabular'
Plug 'Raimondi/delimitMate'
Plug 'mileszs/ack.vim'
Plug 'tpope/vim-surround'
Plug 'tpope/vim-sleuth'
Plug 'w0rp/ale'
Plug 'scrooloose/nerdtree'
Plug 'millermedeiros/vim-statline'
Plug 'kien/ctrlp.vim'
Plug 'sickill/vim-pasta'
Plug 'tomtom/tcomment_vim'
Plug 'hrj/vim-DrawIt'
Plug 'yssl/QFEnter'
" Plug 'rust-lang/rust.vim'
call plug#end()
" Basics
set number
set ruler
syntax on
" Set encoding
set encoding=utf-8
" Set region to US English
set spelllang=en_us
" Whitespace stuff
set nowrap
set tabstop=4
set shiftwidth=4
set softtabstop=4
set noexpandtab
set list listchars=tab:\ \ ,trail:·
set colorcolumn=80
" Folding
set foldopen=all
" Searching
set hlsearch
set incsearch
set ignorecase
set smartcase
" Tab completion
set wildmode=list:longest,list:full
set wildignore+=*.o,*.obj,.git,*.rbc,*.class,.svn,vendor/gems/*
" Status bar
set laststatus=2
" Without setting this, ZoomWin restores windows in a way that causes
" equalalways behavior to be triggered the next time CommandT is used.
" This is likely a bludgeon to solve some other issue, but it works
set noequalalways
" History log size
set history=10000
" NERDTree configuration
let NERDTreeIgnore=['\.DS_Store$', '\.pyc$', '\.rbc$', '\~$']
let NERDTreeMouseMode=2
let NERDTreeAutoCenter=0
let NERDChristmasTree=1
let NERDTreeChDirMode=2
let NERDTreeDirArrows=1
let NERDTreeIgnore = ['^node_modules$']
map <Leader>n :NERDTreeToggle<CR>
" CTags
map <Leader>rt :!ctags --extra=+f -R *<CR><CR>
map <C-\> :tnext<CR>
" Remember last location in file
if has("autocmd")
au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$")
\| exe "normal g'\"" | endif
endif
" make uses real tabs
au FileType make set noexpandtab
" ALE stuff
" set shell=zsh\ -l
set shellcmdflag=-ic
let g:ale_fix_on_save = 0
let g:ale_linters = {'rust': ['analyzer']}
let g:ale_linters_ignore = { 'javascript': ['deno'] }
let g:ale_fixers = { '*': ['trim_whitespace', 'remove_trailing_lines'], 'rust': ['rustfmt'] }
let g:ale_rust_analyzer_config = {
\ 'cargo': {
\ 'features': 'all'
\ }
\}
" RustFmt
" should be sourced from rustfmt.toml - see: https://github.com/rust-lang/rust.vim/issues/439
let g:rustfmt_options = '--edition=2021'
let g:rustfmt_autosave = 1
" let g:rustfmt_emit_files = 1
" let g:rustfmt_fail_silently = 0
" bash
au BufRead,BufNewFile *bash* set filetype=sh
" recognize Jakefile files
au BufNewFile,BufRead {Jakefile} set filetype=javascript
" make Python follow PEP8 ( http://www.python.org/dev/peps/pep-0008/ )
au FileType python set softtabstop=4 tabstop=4 shiftwidth=4 textwidth=79
" allow backspacing over everything in insert mode
set backspace=indent,eol,start
" Opens an edit command with the path of the currently edited file filled in
" Normal mode: <Leader>e
map <Leader>e :e <C-R>=expand("%:p:h") . "/" <CR>
" Opens a tab edit command with the path of the currently edited file filled in
" Normal mode: <Leader>t
map <Leader>te :tabe <C-R>=expand("%:p:h") . "/" <CR>
" Inserts the path of the currently edited file into a command
" Command mode: Ctrl+P
cmap <C-P> <C-R>=expand("%:p:h") . "/" <CR>
" Unimpaired configuration
" Bubble single lines
nmap <C-Up> [e
nmap <C-Down> ]e
" Bubble multiple lines
vmap <C-Up> [egv
vmap <C-Down> ]egv
" disable 'concealing' for vim-json JSON syntax (via sheerun/vim-polyglot plugin)
let g:vim_json_syntax_conceal = 0
" Use modeline overrides
set modeline
set modelines=10
" Default color scheme
color solarized
colorscheme solarized
syntax enable
set background=light
let g:solarized_termtrans = 1
let g:solarized_termcolors = 256
"let g:solarized_visibility = "high"
"let g:solarized_contrast = "high"
" Directories for swp files
set backupdir=~/.vim/backup
set directory=~/.vim/swp//
" CtrlP settings
let g:ctrlp_map = '<c-p>'
let g:ctrlp_custom_ignore = {
\ 'dir': '\.git$\|\.hg$\|\.svn$',
\ 'file': '\.exe$\|\.so$\|\.dll$\|\.DS_Store$',
\ 'link': 'bad_symbolic_link',
\ }
" MacVIM shift+arrow-keys behavior (required in .vimrc)
let macvim_hig_shift_movement = 1
" % to bounce from do to end etc.
runtime! macros/matchit.vim
" Show (partial) command in the status line
set showcmd
" Include user's local vim config
if filereadable(expand("~/.vimrc.local"))
source ~/.vimrc.local
endif
" macros
let @j='''<,''>s/"\(.*\)":/\1:/g''<,''>s/''/\''/ge''<,''>s/"/''/ge"nohlsearch'