Compare commits
2 Commits
740e378a93
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 2fc078fd3b | |||
| 7439b8f0a7 |
@@ -9,11 +9,6 @@
|
||||
"command": "/sbin/texlab",
|
||||
"filetypes": [ "tex","bib","plaintex","context" ]
|
||||
},
|
||||
"bash": {
|
||||
"command": "bash-language-server",
|
||||
"args": ["start"],
|
||||
"filetypes": ["sh","bash"]
|
||||
},
|
||||
"golang": {
|
||||
"command": "gopls",
|
||||
"rootPatterns": ["go.mod"],
|
||||
|
||||
4
init.vim
4
init.vim
@@ -30,7 +30,7 @@ filetype plugin on
|
||||
" indentation
|
||||
set tabstop=4 " tabs only count for 4 spaces
|
||||
set shiftwidth=4 " when indenting use 4 spaces
|
||||
set expandtab " use tab characters
|
||||
set noexpandtab " use tab characters
|
||||
set autoindent
|
||||
|
||||
" view
|
||||
@@ -63,7 +63,7 @@ inoremap <silent><expr> <TAB>
|
||||
\ coc#expandableOrJumpable() ? "\<C-r>=coc#snippet#next()\<CR>" :
|
||||
\ coc#refresh()
|
||||
inoremap <silent><expr> <S-TAB>
|
||||
\ coc#pum#visible() ? coc#pum#prev(1) : "\<C-h>"
|
||||
\ coc#pum#visible() ? coc#pum#prev(1) :
|
||||
\ CheckBackspace() ? "\<S-Tab>" :
|
||||
\ coc#expandableOrJumpable() ? "\<C-r>=coc#snippet#prev()\<CR>" :
|
||||
\ coc#refresh()
|
||||
|
||||
Reference in New Issue
Block a user