Compare commits
2 commits
6fb44d04fb
...
e9468fb693
Author | SHA1 | Date | |
---|---|---|---|
e9468fb693 | |||
fb2ea78d64 |
5 changed files with 23 additions and 3 deletions
|
@ -14,4 +14,4 @@
|
||||||
# If the name does not contain a registry, the local image storage will be
|
# If the name does not contain a registry, the local image storage will be
|
||||||
# consulted, and if it's not present there then it will be pulled from a
|
# consulted, and if it's not present there then it will be pulled from a
|
||||||
# suitable remote registry.
|
# suitable remote registry.
|
||||||
image = "ghcr.io/amanning9/fedora-toolbox-alex:latest"
|
#image = "ghcr.io/amanning9/fedora-toolbox-alex:latest"
|
||||||
|
|
|
@ -21,6 +21,7 @@ endif
|
||||||
" OPTIONS
|
" OPTIONS
|
||||||
" ---------------------------------------
|
" ---------------------------------------
|
||||||
set nocompatible " The most important VIM option
|
set nocompatible " The most important VIM option
|
||||||
|
set encoding=utf-8 " Why have anything else.
|
||||||
|
|
||||||
scriptencoding utf-8 " Convert all scripts into UTF8 format
|
scriptencoding utf-8 " Convert all scripts into UTF8 format
|
||||||
|
|
||||||
|
|
|
@ -9,5 +9,9 @@
|
||||||
|
|
||||||
"json.format.enable": false,
|
"json.format.enable": false,
|
||||||
|
|
||||||
"diagnostic.displayByAle": true
|
"diagnostic.displayByAle": true,
|
||||||
|
|
||||||
|
"jedi.enable": true,
|
||||||
|
"suggest.noselect": true,
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -53,3 +53,18 @@ let g:coc_global_extensions = ['coc-jedi', 'coc-rls', 'coc-tsserver', 'coc-json'
|
||||||
" VIMSPECTOR
|
" VIMSPECTOR
|
||||||
let g:vimspector_enable_mappings = 'HUMAN'
|
let g:vimspector_enable_mappings = 'HUMAN'
|
||||||
let g:vimspector_install_gadgets = ['debugpy']
|
let g:vimspector_install_gadgets = ['debugpy']
|
||||||
|
|
||||||
|
" Config for ALE originally from their github.
|
||||||
|
" Use tab for trigger completion with characters ahead and navigate
|
||||||
|
inoremap <silent><expr> <TAB>
|
||||||
|
\ coc#pum#visible() ? coc#pum#next(1) :
|
||||||
|
\ CheckBackspace() ? "\<Tab>" :
|
||||||
|
\ coc#refresh()
|
||||||
|
inoremap <expr><S-TAB> coc#pum#visible() ? coc#pum#prev(1) : "\<C-h>"
|
||||||
|
|
||||||
|
" Make <CR> to accept selected completion item or notify coc.nvim to format
|
||||||
|
inoremap <silent><expr> <CR> coc#pum#visible() ? coc#pum#confirm()
|
||||||
|
\: "\<C-g>u\<CR>\<c-r>=coc#on_enter()\<CR>"
|
||||||
|
|
||||||
|
" Use <c-space> to trigger completion
|
||||||
|
inoremap <silent><expr> <c-@> coc#refresh()
|
||||||
|
|
2
private
2
private
|
@ -1 +1 @@
|
||||||
Subproject commit 0e34233ad56224b2096022a2c8b0f4b4bd87d2d0
|
Subproject commit 051de63966223f86fb0859d28fbb3ef093bbb4c9
|
Loading…
Reference in a new issue