summaryrefslogtreecommitdiff
path: root/init.vim
blob: 9e04af9c2c55a3500a8b59c06b54e68f987b9739 (plain) (blame)
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
set encoding=utf-8
set fileencoding=utf-8
set nu
set rnu
set listchars=tab:▸\ ,eol:¬,trail:•
" set listchars=tab:\|\  " Alternative listchars w/o special chars.
set tw=80
set colorcolumn=80
set ic
set hls
set updatecount=0
set nocompatible
set tabstop=4
set shiftwidth=4
set noexpandtab
set mouse+=a
syntax on

" I know how to setup my editor, I don't need your changes to my vim
" configuration.
set nomodeline

" Use \-s to pop open a spelling menu. use ]s to search forwards and [s to go
" backwards.
" Apparently this also doesn't work if spell checking isn't enabled
" at the time you enable it.
set spell
nnoremap \s ea<C-X><C-S>
set nospell

" Stolen from the help page:
"
" One typical way to use the netrw tree display is to: >
"
" 	vim .
" 	(use i until a tree display shows)
" 	navigate to a file
" 	v  (edit as desired in vertically split window)
" 	ctrl-w h  (to return to the netrw listing)
" 	P (edit newly selected file in the previous window)
" 	ctrl-w h  (to return to the netrw listing)
" 	P (edit newly selected file in the previous window)
let g:netrw_liststyle=3

""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
call plug#begin(stdpath('data') . '/plugged')

Plug 'scrooloose/nerdtree'
Plug 'scrooloose/syntastic'

Plug 'tpope/vim-fugitive'
Plug 'preservim/tagbar'
Plug 'rking/ag.vim'
Plug 'sjl/gundo.vim'
Plug 'ctrlpvim/ctrlp.vim'
Plug 'godlygeek/tabular'
Plug 'mattn/emmet-vim'
Plug 'tpope/vim-commentary'

" Misc
Plug 'https://git.riedstra.dev/vim/vim-l9'
Plug 'https://git.riedstra.dev/vim/mitch'

" Neovim
Plug 'neovim/nvim-lspconfig'

" Languages
Plug 'fatih/vim-go'
Plug 'hashivim/vim-terraform'
Plug 'MaxMEllon/vim-jsx-pretty'
" Plug 'xavierd/clang_complete'

" Color schemes
" Plug 't184256/vim-boring'
" Plug 'plan9-for-vimspace/acme-colors'
" Plug 'huyvohcmc/atlas.vim'
" Plug 'w0ng/vim-hybrid'
" Plug 'altercation/vim-colors-solarized'
" Plug 'kristijanhusak/vim-hybrid-material'
" Plug 'Lokaltog/vim-monotone'
Plug 'arcticicestudio/nord-vim'

call plug#end()

map <C-n> :NERDTreeToggle<CR>

let g:ctrlp_follow_symlinks = 1
let g:ctrlp_working_path_mode = 0

" Always show status line
set laststatus=2


" Persistent undo
set undofile
set undodir=~/.nvimundo
set undolevels=1000
set undoreload=10000

" lots of history, it's always nice to find old nasty command that happen
" to be really useful
set history=10000

autocmd ColorScheme nord highlight Comment ctermfg=14 guifg=#8FBCBB
let g:nord_uniform_diff_background = 1
colorscheme nord

" For syntastic it's worth running
" SyntasticInfo : to see what's available for the given open file
" SyntasticCheck yamllint : if you want to say manually run the `yamllint`
" checker
let g:syntastic_yaml_checkers = ['yamllint']
let g:syntastic_go_checkers = [ 'go', 'gofmt', 'golangci_lint' ]
let g:syntastic_lua_checkers = [ 'luac', 'luacheck' ]

" This lets :lopen / :lwindow always be populated work
let g:syntastic_always_populate_loc_list = 1

" some info on the Tabular plugin:
" http://vimcasts.org/episodes/aligning-text-with-tabular-vim/

" Commenting in and out blocks can be done with `gc`
" https://github.com/tpope/vim-commentary

" For improved Go support
" go get github.com/jstemmer/gotags
nmap <F8> :TagbarToggle<CR>
" let g:tagbar_ctags_bin='uctags'
" let g:tagbar_ctags_bin='uctags'
let g:tagbar_ctags_bin='ctags'

" For clang complete
" path to directory where library can be found
" let g:clang_library_path='/usr/local/lib'
" let g:clang_library_path='/usr/lib/clang/12/lib'
" let g:clang_library_path='/usr/lib/llvm-12/lib/libclang.so'
" package clang-tools-extra on OpenBSD provides the library


" For info on fugitive
" https://github.com/tpope/vim-fugitive