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
|
set nocompatible " be iMproved, required
filetype plugin on
set shellslash
" Plugins
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
" Completion
"Plugin 'prabirshrestha/async.vim'
"Plugin 'prabirshrestha/vim-lsp'
Plugin 'fatih/vim-go'
Plugin 'ajh17/VimCompletesMe'
Plugin 'ludovicchabant/vim-gutentags'
Plugin 'tpope/vim-surround'
Plugin 'tpope/vim-repeat'
" Editor config
Plugin 'editorconfig/editorconfig-vim'
" Color theme
" Plugin 'agude/vim-eldar'
" Plugin 'ntk148v/vim-horizon'
Plugin 'rakr/vim-colors-rakr'
" File management
" Plugin 'scrooloose/nerdtree'
Plugin 'tpope/vim-vinegar'
" Git
" Plugin 'jreybert/vimagit'
" File support
Plugin 'cespare/vim-toml'
Plugin 'vim-scripts/TagHighlight'
Plugin 'lervag/vimtex'
Plugin 'LnL7/vim-nix'
Plugin 'junegunn/vim-easy-align'
call vundle#end() " required
filetype plugin indent on " required
colorscheme rakr
" Start interactive EasyAlign in visual mode (e.g. vipga)
xmap ga <Plug>(EasyAlign)
" Start interactive EasyAlign for a motion/text object (e.g. gaip)
nmap ga <Plug>(EasyAlign)
" Completion
" let g:LanguageClient_serverCommands = {
" \ 'rust': ['/usr/bin/rustup', 'run', 'stable', 'rls' ],
" \ 'c': ['/usr/bin/cquery', '--log-file=/tmp/cq.log', '--init={"cacheDirectory":"/tmp/cquery/"}' ]
" \ }
"
" let g:LanguageClient_useVirtualText = 0
" let g:LanguageClient_diagnosticsEnable = 0
" let g:deoplete#enable_at_startup = 1
let g:go_def_mode='gopls'
let g:go_info_mode='gopls'
let b:vcm_tab_complete = 'omni'
autocmd FileType vim let b:vcm_tab_complete = 'vim'
syntax enable
set number relativenumber
set tabstop=4
set shiftwidth=4
set softtabstop=4
set noexpandtab
let g:tex_flavor='latex'
if has('nvim')
set inccommand=split
endif
" Required for operations modifying multiple buffers like rename.
set hidden
" Snippits
" Trigger configuration. Do not use <tab> if you use https://github.com/Valloric/YouCompleteMe.
" let g:UltiSnipsExpandTrigger="<c-b>"
" let g:UltiSnipsJumpForwardTrigger="<c-b>"
" let g:UltiSnipsJumpBackwardTrigger="<c-z>"
" If you want :UltiSnipsEdit to split your window.
" let g:UltiSnipsEditSplit="vertical"
" File finding
set path+=**
set wildmenu
let g:netrw_liststyle=3
" autocmd BufEnter * call ncm2#enable_for_buffer()
" let g:ncm2#auto_popup = 0
set completeopt=menuone,preview
" Keymapping
map <F4> :TagbarToggle<CR>
nnoremap <C-b> :b
nnoremap <silent> <Plug>QuickNext :cnext<CR> :call repeat#set("\<Plug>QuickNext")<CR>
nnoremap <silent> <Plug>QuickPrev :cprev<CR> :call repeat#set("\<Plug>QuickPrev")<CR>
nnoremap ,, :copen<CR><c-w><c-p>
nmap ,n <Plug>QuickNext
nmap ,N <Plug>QuickPrev
" When moving more lines make it a jump. If couns i 2 it will run m'2j,
" thus storing it on the jumplist and then jumping
nnoremap <expr> j (v:count > 1 ? "m'" . v:count : '' ) . 'j'
nnoremap <expr> k (v:count > 1 ? "m'" . v:count : '' ) . 'k'
" Leader stuff
let mapleader=" "
map <leader>mm :make V=1<CR>
map <leader>mf :make flash V=1<CR>
" Example on filetype specific
" autocmd FileType tex map <leader>o :w !detex \| wc -w<CR>
autocmd FileType asciidoc nnoremap <leader>c :!asciidoctor %<CR>
" Enforcing filetypes
autocmd BufRead,BufNewFile *.ino set filetype=c
autocmd BufRead,BufNewFile *.asc set filetype=asciidoc
autocmd FileType python setlocal completeopt-=preview
" Highlightning
let g:DoNotGenerateTags = 1
" Remove pink color from functions
highlight clear Function
" Remove color from struct members
highlight link Member NonText
" Spell check
set spelllang=en
autocmd FileType tex set spell
" Latex support
let g:vimtex_quickfix_blgparser = {'disable': 1}
let g:vimtex_quickfix_open_on_warning = 0
let g:vimtex_compiler_latexmk = {
\ 'backend' : 'nvim',
\ 'background' : 0,
\ 'build_dir' : '',
\ 'callback' : 1,
\ 'continuous' : 0,
\ 'executable' : 'latexmk',
\ 'hooks' : [],
\ 'options' : [
\ '-file-line-error',
\ '-synctex=1',
\ ],
\}
|