vimrc (4412B) download
1"-- BASIC CONFIG --
2let g:gruvbox_italic=1
3
4colorscheme one
5set background=dark
6set termguicolors
7let g:airline_theme='one'
8
9set virtualedit=onemore
10
11set guioptions-=T
12set guioptions-=L
13"set guifont=SauceCodePro\ Nerd\ Font
14set guifont=Monaco
15set belloff=all
16
17set mouse=a
18
19set number
20set ruler
21
22syntax enable
23set ww=<,>,[,]
24set splitbelow
25
26set smarttab
27set cindent
28set tabstop=4
29set shiftwidth=4
30set autoindent
31set relativenumber
32
33set autowriteall
34set clipboard=unnamedplus
35
36let g:auto_save = 1
37
38
39command Config :e ~/.vimrc
40
41autocmd InsertEnter * :set relativenumber&
42autocmd InsertLeave * :set relativenumber
43
44"-- MAPPINGS --"
45
46inoremap <c-s> <C-O>:write<CR>
47
48inoremap <c-z> <C-O>:undo<CR>
49inoremap <c-y> <C-O>:redo<CR>
50inoremap <c-o> <C-O>:edit
51map <c-p> <Esc>pi
52
53nmap <S-Up> v<Up>
54nmap <S-Down> v<Down>
55nmap <S-Left> v<Left>
56nmap <S-Right> v<Right>
57vmap <S-Up> <Up>
58vmap <S-Down> <Down>
59vmap <S-Left> <Left>
60vmap <S-Right> <Right>
61imap <S-Up> <Esc>v<Up>
62imap <S-Down> <Esc>v<Down>
63imap <S-Left> <Esc>v<Left>
64imap <S-Right> <Esc>v<Right>
65
66inoremap <c-f> :FZF<CR>
67nnoremap f :FZF<CR>
68nnoremap q :quitall
69nnoremap <c-t> :term<CR>
70nnoremap , :Config<CR>
71nnoremap b<Left> :bprevious<CR>
72nnoremap b<Right> :bnext<CR>
73nnoremap bq :bd<CR>
74nnoremap bo :bnew<CR>
75
76nnoremap To :tabnew<CR>
77nnoremap Tq :tabclose<CR>
78nnoremap Tk :tabonly<CR>
79nnoremap T<Left> :tabprevious<CR>
80nnoremap T<Right> :tabnext<CR>
81
82"nnoremap s :write<CR>
83
84nnoremap sv :vsplit<CR>
85nnoremap sh :split<CR>
86nmap sn <c-w>j
87nmap sm <c-w>_
88nmap se <c-w>=
89nmap s<Left> <c-w>h
90nmap s<Right> <c-w>l
91nmap s<Down> <c-w>j
92nmap s<Up> <c-w>k
93
94"-- PLUGIN CONFIG --"
95
96"let g:coc_global_extensions = ['coc-json', 'coc-clangd']
97
98"let g:airline_theme='bubblegum'
99"let g:airline#extensions#tabline#enabled=1
100
101let g:one_allow_italics=1
102
103let g:clang_format#auto_format = 1
104let g:clang_format#style_options = {
105 \ "AllowShortLoopsOnASingleLine":"true",
106 \ "AllowShortBlocksOnASingleLine":"true",
107 \ "AlignAfterOpenBracket":"Align",
108 \ "AlignConsecutiveAssignments":"true",
109 \ "AlignConsecutiveDeclarations":"true",
110 \ "AlignConsecutiveMacros":"true",
111 \ "AlignEscapedNewlines":"true",
112 \ "BreakBeforeBraces":"Attach",
113 \ "BreakBeforeTernaryOperators":"true",
114 \ "BreakConstructorInitializers":"BeforeComma",
115 \ "BreakInheritanceList":"BeforeComma",
116 \ "BreakStringLiterals":"false",
117 \ "ColumnLimit":0,
118 \ "Cpp11BracedListStyle":"false",
119 \ "FixNamespaceComments":"true",
120 \ "IncludeBlocks":"Regroup",
121 \ "IndentCaseBlocks":"true",
122 \ "IndentCaseLabels":"true",
123 \ "IndentPPDirectives":"AfterHash",
124 \ "IndentWidth":4,
125 \ "MaxEmptyLinesToKeep":2,
126 \ "NamespaceIndentation":"All",
127 \ "PointerAlignment":"Left",
128 \ "SortIncludes":"true",
129 \ "SortUsingDeclarations":"true",
130 \ "SpaceAfterCStyleCast":"true",
131 \ "SpaceAfterLogicalNot":"false",
132 \ "SpaceAfterTemplateKeyword":"false",
133 \ "SpaceBeforeAssignmentOperators":"true",
134 \ "SpaceBeforeCpp11BracedList":"false",
135 \ "SpaceBeforeCtorInitializerColon":"true",
136 \ "SpaceBeforeInheritanceColon":"true",
137 \ "SpaceBeforeRangeBasedForLoopColon":"true",
138 \ "SpaceBeforeSquareBrackets":"false",
139 \ "SpaceInEmptyBlock":"false",
140 \ "SpaceInEmptyParentheses":"false",
141 \ "SpacesBeforeTrailingComments":4,
142 \ "SpacesInAngles":"false",
143 \ "SpacesInCStyleCastParentheses":"false",
144 \ "SpacesInConditionalStatement":"false",
145 \ "SpacesInContainerLiterals":"false",
146 \ "SpacesInParentheses":"false",
147 \ "SpacesInSquareBrackets":"false",
148 \ "TabWidth":4,
149 \ "UseTab":"Always"}
150
151" COC.NVIM
152
153" Set internal encoding of vim, not needed on neovim, since coc.nvim using some
154" unicode characters in the file autoload/float.vim
155set encoding=utf-8
156
157" TextEdit might fail if hidden is not set.
158set hidden
159
160" Some servers have issues with backup files, see #649.
161set nobackup
162set nowritebackup
163
164" Give more space for displaying messages.
165set cmdheight=2
166
167" Having longer updatetime (default is 4000 ms = 4 s) leads to noticeable
168" delays and poor user experience.
169set updatetime=300
170
171" Don't pass messages to |ins-completion-menu|.
172set shortmess+=c
173
174" Always show the signcolumn, otherwise it would shift the text each time
175" diagnostics appear/become resolved.
176set signcolumn=yes
177
178
179call ale#linter#Define('c', {
180 \ 'name': 'clangd',
181 \ 'lsp': 'stdio',
182 \ 'executable': '/usr/bin/clangd',
183 \ 'command': '%e',
184 \ 'project_root': '.'
185 \ })
186
187let g:ale_completion_enabled=1
188let g:ale_linters_explicit = 1
189
190set omnifunc=ale#completetion#OmniFunc