summaryrefslogtreecommitdiff
path: root/nvim/init.vim
blob: 630b90d58bc8f7511622bd1751faff50d25bb1bc (plain)
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
" PaperColor ###############################################################

set background=light
colorscheme PaperColor

" Deoplete #################################################################
let g:deoplete#enable_at_startup = 1
" use tab to cycle
inoremap <expr><tab> pumvisible() ? "\<c-n>" : "\<tab>"
" close preview when leaving insert
autocmd InsertLeave,CompleteDone * if pumvisible() == 0 | pclose | endif

" NERDTree #################################################################
let NERDTreeMouseMode=3
let NERDTreeMinimalUI=1
let NERDTreeAutoDeleteBuffer=1
let NERDTreeHighlightCursorline=1
let NERDTreeShowHidden=1
let g:NERDTreeIndicatorMapCustom = {
    \ "Modified"  : "Δ",
    \ "Staged"    : "✚",
    \ "Untracked" : "✭",
    \ "Renamed"   : "➜",
    \ "Unmerged"  : "☢",
    \ "Deleted"   : "-",
    \ "Dirty"     : "Δ",
    \ "Clean"     : "",
    \ "Unknown"   : ""
    \ }

map <C-n> :NERDTreeToggle<CR>
" always enter term buffer in insert mode
autocmd BufEnter * if &buftype == 'terminal' | :startinsert | endif

" vim-go ###################################################################
"
"use goimports for formatting instead of gofmt
let g:go_fmt_command = "goimports"

" neomake ##################################################################
autocmd! BufWritePost * Neomake
"let g:neomake_verbose=3
"let g:neomake_logfile='/tmp/neomake.log'

" the sidebar sign placement wasn't playing nice with gitgutter, so use the
" location list instead. But location list is kinda dumb cause it pops open
" multiple times and at weird times, sooo.... fuck it
"let g:neomake_open_list=2
let g:neomake_open_list=0
let g:neomake_place_signs=0

let g:neomake_go_enabled_makers = ['go', 'golangcilint']
let g:neomake_go_golangcilint_maker = {
    \ 'exe': 'golangci-lint',
    \ 'args': [
        \ 'run',
        \ '--no-config',
        \ '--out-format=line-number',
        \ '--print-issued-lines=false',
        \ '-E=durationcheck',
        \ '-E=errorlint',
        \ '-E=exportloopref',
        \ '-E=forbidigo',
        \ '-E=gochecknoinits',
        \ '-E=godot',
        \ '-E=goimports',
        \ '-E=misspell',
        \ '-E=revive',
        \ '-E=unconvert',
        \ '-E=unparam',
        \ '.'
    \ ],
    \ 'output_stream': 'stdout',
    \ 'append_file': 0,
    \ 'cwd': '%:h',
    \ 'errorformat':
        \ '%f:%l:%c: %m,' .
        \ '%f:%l: %m'
    \ }

let g:neomake_markdown_enabled_makers = ['misspell']
let g:neomake_markdown_misspell_maker = {
    \ 'errorformat': '%f:%l:%c:%m',
    \ }

" mine #####################################################################

"Makes current line/column highlighted, and set text width
set tw=80
set colorcolumn=+1
"autocmd bufenter * set cursorline   cursorcolumn   colorcolumn=+1
"autocmd bufleave * set nocursorline nocursorcolumn colorcolumn=0
hi ColorColumn ctermfg=none ctermbg=grey cterm=none
"hi CursorLine ctermfg=none ctermbg=lightgrey cterm=none
"hi CursorColumn ctermfg=none ctermbg=lightgrey cterm=none

"Buffers scroll a bit so cursor doens't go all the way to the bottom before
"scroll begins
set scrolloff=3

"Makes all .swp files go to /tmp instead of . CAUSE FUCK DA POLICE
set backupdir=/tmp
set directory=/tmp

"Better indenting
set autoindent
set expandtab
set tabstop=4
set shiftwidth=4

"Show eol and tabs
set list
set listchars=trail:░,tab:►\ ,extends:>,precedes:<

"Don't highlight search matches, don't jump while mid-search
set noincsearch
set nohlsearch

"We want certain types to only have 2 space for tabs
au FileType clojure    setlocal tabstop=2 shiftwidth=2
au FileType ruby       setlocal tabstop=2 shiftwidth=2
au FileType yaml       setlocal tabstop=2 shiftwidth=2
au FileType html       setlocal tabstop=2 shiftwidth=2
au FileType proto      setlocal tabstop=2 shiftwidth=2
au FileType javascript setlocal tabstop=2 shiftwidth=2

"We want certain types to use tabs instead of spaces
au FileType go      setlocal nolist noexpandtab
au FileType make    setlocal nolist noexpandtab

"terminal shortcuts
tnoremap <leader><leader> \
tnoremap <leader> <C-\><C-n>
"tab shortcuts for terminal mode have terminal escape code preceding them
tnoremap <leader>tn <C-\><C-n>:tabe term://zsh<CR>
tnoremap <leader>tN <C-\><C-n>:tabe<CR>
tnoremap <leader>ts <C-\><C-n>:vs term://zsh<CR>
tnoremap <leader>tS <C-\><C-n>:vnew<CR>
tnoremap <leader>ti <C-\><C-n>:sp term://zsh<CR>
tnoremap <leader>tI <C-\><C-n>:new<CR>
tnoremap <leader>th <C-\><C-n>gT
tnoremap <leader>tH <C-\><C-n>:-tabmove<CR>
tnoremap <leader>tl <C-\><C-n>gt
tnoremap <leader>tL <C-\><C-n>:+tabmove<CR>
tnoremap <leader>tx <C-\><C-n>:tabclose<CR>

"tab shortcuts
noremap <leader>tn :tabe term://zsh<CR>
noremap <leader>tN :tabe<CR>
noremap <leader>ts :vs term://zsh<CR>
noremap <leader>tS :vnew<CR>
noremap <leader>ti :sp term://zsh<CR>
noremap <leader>tI :new<CR>
noremap <leader>th gT
noremap <leader>tH :-tabmove<CR>
noremap <leader>tl gt
noremap <leader>tL :+tabmove<CR>
noremap <leader>tx :tabclose<CR>

" yank/paste into/from clipboard
set clipboard+=unnamedplus

"Clojure specific mappings
" Eval outerform
au FileType clojure nmap <buffer> cpP :Eval<cr>
" Eval full page
au FileType clojure nmap <buffer> cpR :%Eval<cr>

" Disable Ex mode!
nnoremap Q <Nop>