home/neovim: Fix neoformat for python
This commit is contained in:
parent
3786fcd289
commit
fc74f1319b
|
@ -12,6 +12,7 @@
|
||||||
black
|
black
|
||||||
flake8
|
flake8
|
||||||
pylint
|
pylint
|
||||||
|
isort
|
||||||
jedi
|
jedi
|
||||||
]))
|
]))
|
||||||
];
|
];
|
||||||
|
@ -144,7 +145,13 @@
|
||||||
let g:go_gopls_enabled = 0
|
let g:go_gopls_enabled = 0
|
||||||
|
|
||||||
" neoformat
|
" neoformat
|
||||||
let g:neoformat_python_black = { 'args': ['-l 120'] }
|
let g:neoformat_run_all_formatters = 1
|
||||||
|
let g:neoformat_python_black = {
|
||||||
|
\ 'exe': 'black',
|
||||||
|
\ 'stdin': 1,
|
||||||
|
\ 'args': ['-q', '-l 120', '-'],
|
||||||
|
\ }
|
||||||
|
let g:neoformat_enabled_python = ['black', 'isort']
|
||||||
|
|
||||||
lua << EOF
|
lua << EOF
|
||||||
require("bufferline").setup{}
|
require("bufferline").setup{}
|
||||||
|
|
Loading…
Reference in a new issue