Add vimspector and set black to 100 characters.
This commit is contained in:
parent
9a6bfd60c3
commit
14ec6810a6
3 changed files with 9 additions and 0 deletions
2
home/.config/black
Normal file
2
home/.config/black
Normal file
|
@ -0,0 +1,2 @@
|
|||
[tool.black]
|
||||
line-length = 100
|
|
@ -49,3 +49,7 @@ let g:coc_global_extensions = ['coc-jedi', 'coc-rls', 'coc-tsserver', 'coc-json'
|
|||
"""Language Specific Options.
|
||||
"Remeber that COC has it's own settings file too, so most of it's settings are
|
||||
"there.
|
||||
|
||||
" VIMSPECTOR
|
||||
let g:vimspector_enable_mappings = 'HUMAN'
|
||||
let g:vimspector_install_gadgets = ['debugpy']
|
||||
|
|
|
@ -17,6 +17,9 @@ function! LoadPlugins()
|
|||
Plug 'neoclide/coc.nvim', {'branch': 'release'} "Autocompetion
|
||||
endif
|
||||
|
||||
Plug 'puremourning/vimspector'
|
||||
Plug 'sagi-z/vimspectorpy', { 'do': { -> vimspectorpy#update() } }
|
||||
|
||||
" THEMES
|
||||
Plug 'altercation/vim-colors-solarized' " Solarized is a pretty colour scheme
|
||||
Plug 'morhetz/gruvbox' " gruvbox is a good colour scheme on 256 colours
|
||||
|
|
Loading…
Reference in a new issue