Compare commits
19 Commits
648c5320a7
...
babel
| Author | SHA1 | Date | |
|---|---|---|---|
| 9f67c16187 | |||
| 740e378a93 | |||
| f9315e5aaf | |||
| 6ab3026ae1 | |||
| a242455732 | |||
| 28c0e1cc0d | |||
| f237920714 | |||
| 7242d257d0 | |||
| 21d0beb2d9 | |||
| 1d7d4d0146 | |||
| 1b4ebe2c7c | |||
| e33e6f476d | |||
| 8b66bc02b8 | |||
| c10ba7c8a8 | |||
| f7a88e4431 | |||
| be250e2d9c | |||
| c6d32f2b0f | |||
| 58eea72762 | |||
| d508759e33 |
@@ -9,6 +9,11 @@
|
|||||||
"command": "/sbin/texlab",
|
"command": "/sbin/texlab",
|
||||||
"filetypes": [ "tex","bib","plaintex","context" ]
|
"filetypes": [ "tex","bib","plaintex","context" ]
|
||||||
},
|
},
|
||||||
|
"bash": {
|
||||||
|
"command": "bash-language-server",
|
||||||
|
"args": ["start"],
|
||||||
|
"filetypes": ["sh","bash"]
|
||||||
|
},
|
||||||
"golang": {
|
"golang": {
|
||||||
"command": "gopls",
|
"command": "gopls",
|
||||||
"rootPatterns": ["go.mod"],
|
"rootPatterns": ["go.mod"],
|
||||||
|
|||||||
23
init.vim
23
init.vim
@@ -30,7 +30,7 @@ filetype plugin on
|
|||||||
" indentation
|
" indentation
|
||||||
set tabstop=4 " tabs only count for 4 spaces
|
set tabstop=4 " tabs only count for 4 spaces
|
||||||
set shiftwidth=4 " when indenting use 4 spaces
|
set shiftwidth=4 " when indenting use 4 spaces
|
||||||
set noexpandtab " use tab characters
|
set expandtab " use tab characters
|
||||||
set autoindent
|
set autoindent
|
||||||
|
|
||||||
" view
|
" view
|
||||||
@@ -58,14 +58,14 @@ function! CheckBackspace() abort
|
|||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
inoremap <silent><expr> <TAB>
|
inoremap <silent><expr> <TAB>
|
||||||
\ coc#pum#visible() ? coc#pum#next(1) :
|
\ coc#pum#visible() ? coc#pum#next(1) :
|
||||||
|
\ CheckBackspace() ? "\<Tab>" :
|
||||||
\ coc#expandableOrJumpable() ? "\<C-r>=coc#snippet#next()\<CR>" :
|
\ coc#expandableOrJumpable() ? "\<C-r>=coc#snippet#next()\<CR>" :
|
||||||
\ CheckBackspace() ? "\<Tab>" :
|
\ coc#refresh()
|
||||||
\ coc#refresh()
|
|
||||||
inoremap <silent><expr> <S-TAB>
|
inoremap <silent><expr> <S-TAB>
|
||||||
\ coc#pum#visible() ? coc#pum#prev(1) : "\<C-h>"
|
\ coc#pum#visible() ? coc#pum#prev(1) :
|
||||||
\ coc#expandableOrJumpable() ? "\<C-r>=coc#snippet#prev()\<CR>" :
|
|
||||||
\ CheckBackspace() ? "\<S-Tab>" :
|
\ CheckBackspace() ? "\<S-Tab>" :
|
||||||
|
\ coc#expandableOrJumpable() ? "\<C-r>=coc#snippet#prev()\<CR>" :
|
||||||
\ coc#refresh()
|
\ coc#refresh()
|
||||||
let g:coc_disable_startup_warning = 1
|
let g:coc_disable_startup_warning = 1
|
||||||
|
|
||||||
@@ -90,9 +90,14 @@ nmap <silent> [g <Plug>(coc-diagnostic-prev)
|
|||||||
nmap <silent> ]g <Plug>(coc-diagnostic-next)
|
nmap <silent> ]g <Plug>(coc-diagnostic-next)
|
||||||
nmap <silent> ]f <Plug>(coc-fix-current)
|
nmap <silent> ]f <Plug>(coc-fix-current)
|
||||||
|
|
||||||
" Temporary!!! Remove after CoC update
|
" Symbol renaming
|
||||||
let storage_file = stdpath('data') . '/coc-localstorage'
|
nmap <leader>rn <Plug>(coc-rename)
|
||||||
let g:coc_node_args = ['--localstorage-file=' . storage_file]
|
|
||||||
|
" GoTo code navigation
|
||||||
|
nmap <silent><nowait> gd <Plug>(coc-definition)
|
||||||
|
nmap <silent><nowait> gy <Plug>(coc-type-definition)
|
||||||
|
nmap <silent><nowait> gi <Plug>(coc-implementation)
|
||||||
|
nmap <silent><nowait> gr <Plug>(coc-references)
|
||||||
|
|
||||||
" syntax highlighting
|
" syntax highlighting
|
||||||
syntax on
|
syntax on
|
||||||
|
|||||||
Reference in New Issue
Block a user