summaryrefslogtreecommitdiff
path: root/.config/nvim/init.vim
blob: 357ccba3dca66ff543e78332da699cc38156622d (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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
"
" ~/.config/nvim/init.vim
"
let mapleader=','
set showcmd

""---Auto installs vim-plug---""
" let autoload_plug_path='~/.config/nvim/autoload/plug.vim'
" if !filereadable(autoload_plug_path)
" 	echo "Downloading junegunn/vim-plug to manage plugins..."
" 	silent execute '!curl -fLo ' . autoload_plug_path . '  --create-dirs
" 				\ "https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim"'
" 	autocmd VimEnter * PlugInstall
" endif
" unlet autoload_plug_path

""---Loads plugins---""
	call plug#begin('~/.config/nvim/plugged')
		" Color schemes
		" Plug 'altercation/vim-colors-solarized'
		Plug 'dracula/vim'
		Plug 'chrisbra/Colorizer'
			let g:colorizer_colornames = 0

		" Other
		Plug 'baskerville/vim-sxhkdrc'
		Plug 'mboughaba/i3config.vim'
		Plug 'junegunn/goyo.vim'
		Plug 'preservim/nerdtree'
			let g:NERDTreeShowHidden=1
			autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTree") && b:NERDTree.isTabTree()) | q | endif

		"Airline
		Plug 'vim-airline/vim-airline'
			let g:airline_powerline_fonts=1
			" let g:airline#extensions#tabline#enabled=1
		Plug 'vim-airline/vim-airline-themes'
			let g:airline_theme='dracula'

		" Git
		Plug 'Xuyuanp/nerdtree-git-plugin'
		Plug 'mhinz/vim-signify'
			set updatetime=100

		"Auto completion
		Plug 'Valloric/YouCompleteMe'
			let g:ycm_autoclose_preview_window_after_completion=1
			if !has_key( g:, 'ycm_language_server' )
				let g:ycm_language_server = []
			endif
			let g:ycm_language_server += [
				\	{
				\ 		'name': 'godot',
				\		'filetypes': [ 'gdscript' ],
				\		'project_root_files': [ 'project.godot' ],
				\		'port': 6008
				\	}
				\ ]

		" TeX
		Plug 'lervag/vimtex'
			let g:tex_flavor='latex'
			let g:vimtex_view_method=$READER
			let g:vimtex_quickfix_mode=0
		Plug 'KeitaNakamura/tex-conceal.vim'
			set conceallevel=2
			let g:tex_conceal="abdgm"

		" Markdown/pandoc
		Plug 'vim-pandoc/vim-pandoc'
		Plug 'vim-pandoc/vim-pandoc-syntax'

		" Python
		Plug 'tmhedberg/SimpylFold'
			let g:SympylFold_docstring_preview=1
		Plug 'vim-scripts/indentpython.vim'
		" Plug 'jmcantrell/vim-virtualenv'
		" Plug 'Yggdroot/indentLine'
		" No longer needed as synstastic includes flake8 linter.
		" Plug 'nvie/vim-flake8'

		" Java
		Plug 'uiiaoo/java-syntax.vim'
		" If variable highlighting should be disabled
		" highlight link JavaIdentifier NONE

		" Syntax
		Plug 'vim-syntastic/syntastic'
			set statusline+=%#warningmsg#
			set statusline+=%{SyntasticStatuslineFlag()}
			set statusline+=%*
			let g:syntastic_always_populate_loc_list=1
			let g:syntastic_auto_loc_list=1
			let g:syntastic_check_on_open=1
			let g:syntastic_check_on_wq=0
			let g:syntastic_tex_checkers=['chktex']
			"" let g:syntastic_tex_lacheck_quiet_messages = {'regex': '\Vpossible unwanted space at'}
			let g:syntastic_tex_chktex_quiet_messages = {'level': 'warnings'}

		" JavaScript
		Plug 'yuezk/vim-js'
		Plug 'maxmellon/vim-jsx-pretty'

		Plug 'alvan/vim-closetag'
		let g:closetag_filenames = '*.html,*.xhtml,*.phtml,*.xml,*.wsdl,*.wsd'

		Plug 'habamax/vim-godot'

	call plug#end()
	"" Commands for plug.
	" PlugInstall [name ...] [#threads]		Install plugins
	" PlugUpdate [name ...] [#threads]		Install or update plugins
	" PlugClean[!]							Remove unlisted plugins (bang version will clean without prompt)
	" PlugUpgrade							Upgrade vim-plug itself
	" PlugStatus							Check the status of plugins
	" PlugDiff								Examine changes from the previous update and the pending changes
	" PlugSnapshot[!] [output path]			Generate script for restoring the current snapshot of the plugins

""---Basic configuration---""
	syntax enable
	set background=dark
	colorscheme dracula
	" Just so alacritty can use transparency.
	hi Normal ctermbg=NONE
	set title
	set encoding=utf-8
	set number relativenumber
	set cursorline
	set clipboard+=unnamedplus

	" Custom colors/highlights
	highlight BadWhitespace ctermbg=red

	" Indentation
	filetype plugin indent on
	set tabstop=4
	set shiftwidth=4

	" Spell checking
	autocmd FileType tex setlocal spell
	set spelllang=es_mx,en_us

	" Folding
	set foldmethod=indent
	set foldlevel=99

	" Exclusively for python
	au BufNewFile,BufRead *.py
		\ set tabstop=4 |
		\ set softtabstop=4 |
		\ set shiftwidth=4 |
		\ set expandtab |
		\ set textwidth=79 |
		\ set fileformat=unix

	" Some filetypes that require 4 spaces for tabs.
	au BufEnter,BufNewFile,BufRead *.java
		\ set tabstop=4 |
		\ set softtabstop=0 |
		\ set shiftwidth=4 |
		\ set noexpandtab |
		\ set fileformat=unix

	" Similar to python, but for js.
	au BufEnter,BufNewFile,BufRead *.js
		\ set tabstop=2 |
		\ set softtabstop=2 |
		\ set shiftwidth=2 |
		\ set expandtab |
		\ set fileformat=unix

	" Some filetypes that require 2 spaces for tabs. (xml/html like)
	au BufEnter,BufNewFile,BufRead *.xml,*.html,*.jsp,*.wsdl,*.xsd,*.yaml,*.yml,*.css
		\ set tabstop=2 |
		\ set softtabstop=2 |
		\ set shiftwidth=2 |
		\ set expandtab |
		\ set fileformat=unix

	" Show bad whitespaces on some files.
	au BufAdd,BufEnter,BufRead,BufNewFile *.py,*.pyw,*.c,*.h,*.js,*.java,*.xml,*.html,*.jsp match BadWhitespace /\s\+$/


	" Listchars
	set showbreak=↪\
	set listchars=eol:,nbsp:,tab:»\ ,trail:,precedes:,extends:""---Custom functions---""
	" Toggle spellchecking
	function! ToggleSpellCheck()
		set spell!
		if &spell
			echo "Spellcheck ON"
		else
			echo "Spellcheck OFF"
		endif
	endfunction

	" Toggle listchars
	function! ToggleListChars()
		set list!
		if &list
			echo "Listchars ON"
		else
			echo "Listchars OFF"
		endif
	endfunction

""---Vanilla vim keybindings---""
	" Reload vim
	nmap <F5> :source ~/.config/nvim/init.vim<CR>

	" Toggle relative line number
	nmap <F2> :set number invrelativenumber<CR>

	" Buffers
	nnoremap gb :ls<CR>:buffer<Space>
	nmap <Leader>a :badd<Space>
	nmap <Leader>l :ls<CR>

	" Split navigation
	nmap <C-h> <C-w>h
	nmap <C-j> <C-w>j
	nmap <C-k> <C-w>k
	nmap <C-l> <C-w>l
	nnoremap <C-left> :vertical resize -5<cr>
	nnoremap <C-down> :resize +5<cr>
	nnoremap <C-up> :resize -5<cr>
	nnoremap <C-right> :vertical resize +5<cr>

	" Tab manipulation
	nmap <Leader>t :tabe<CR>
	nmap <Leader>y :tabclose<CR>

	" Enable folding with the spacebar
	nnoremap <Space> za

	" Spell checking
	nmap <Leader>s :call ToggleSpellCheck()<CR>

	" List chars
	nmap <Leader>c :call ToggleListChars()<CR>

	" Custom auto completion
	" inoremap {<CR> {<CR>}<ESC>kA<CR>
	" inoremap { {}<ESC>i
	" inoremap ( ()<ESC>i
	" inoremap [ []<ESC>i
	" inoremap ' ''<ESC>i
	" inoremap " ""<ESC>i

""---Plugin keybindings---""
	" Toggle NERDTree
	nmap <C-n> :NERDTreeToggle<CR>

	" Goyo
	nmap <F8> :Goyo<CR>

	" YouCompleteMe
	map <Leader>g  :YcmCompleter GoToDefinitionElseDeclaration<CR>