Compare commits
12 Commits
master
...
7242d257d0
| Author | SHA1 | Date | |
|---|---|---|---|
| 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"],
|
||||||
|
|||||||
5
init.vim
5
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
|
||||||
@@ -48,6 +48,9 @@ set foldmethod=syntax
|
|||||||
"set foldlevel=0
|
"set foldlevel=0
|
||||||
"set foldnestmax=1
|
"set foldnestmax=1
|
||||||
|
|
||||||
|
" Scrolloff
|
||||||
|
set scrolloff=7
|
||||||
|
|
||||||
" CoC settings
|
" CoC settings
|
||||||
inoremap <silent><expr> <TAB>
|
inoremap <silent><expr> <TAB>
|
||||||
\ coc#pum#visible() ? coc#pum#next(1) :
|
\ coc#pum#visible() ? coc#pum#next(1) :
|
||||||
|
|||||||
Reference in New Issue
Block a user