-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvimrc
More file actions
46 lines (36 loc) · 912 Bytes
/
vimrc
File metadata and controls
46 lines (36 loc) · 912 Bytes
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
set nocompatible " be iMproved, required
filetype off " required
set rtp+=~/.dotmac/vim/bundle/Vundle.vim
call vundle#begin()
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
" Go Plugins
Plugin 'fatih/vim-go'
" Git
Plugin 'tpope/vim-fugitive'
Plugin 'airblade/vim-gitgutter'
" General usability
Plugin 'ctrlpvim/ctrlp.vim'
Plugin 'lifepillar/vim-solarized8'
Plugin 'vim-airline/vim-airline'
Plugin 'dense-analysis/ale'
Plugin 'vim-syntastic/syntastic'
Plugin 'sheerun/vim-polyglot'
call vundle#end()
filetype plugin indent on
set number
set showcmd
set showmode
set visualbell
set tabstop=2 shiftwidth=2 expandtab
set autoindent
set smartindent
set smarttab
let g:go_def_mode='gopls'
let g:go_info_mode='gopls'
set background=dark
syntax on
colorscheme solarized8
let g:ale_linters = {
\ 'go': ['golangci-lint'],
\}