Updates
This commit is contained in:
parent
073a40631b
commit
2884b2fd2c
2 changed files with 7 additions and 7 deletions
12
vim/vimrc
12
vim/vimrc
|
@ -126,18 +126,18 @@ set signcolumn=yes
|
||||||
|
|
||||||
" Builtin LSP
|
" Builtin LSP
|
||||||
lua << EOF
|
lua << EOF
|
||||||
local nvim_lsp = require'nvim_lsp'
|
local lspconfig = require'lspconfig'
|
||||||
nvim_lsp.ocamlls.setup{}
|
lspconfig.ocamlls.setup{}
|
||||||
nvim_lsp.pyls.setup{
|
lspconfig.pyls.setup{
|
||||||
settings = {
|
settings = {
|
||||||
pyls = {
|
pyls = {
|
||||||
configurationSources = { "pyls-black", flake8 }
|
configurationSources = { "pyls-black", flake8 }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
nvim_lsp.rust_analyzer.setup{}
|
lspconfig.rust_analyzer.setup{}
|
||||||
nvim_lsp.solargraph.setup{}
|
lspconfig.solargraph.setup{}
|
||||||
nvim_lsp.yamlls.setup{}
|
lspconfig.yamlls.setup{}
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
set background=dark
|
set background=dark
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
if [[ -x ~/.cargo/bin/zoxide ]]; then
|
if [[ -x ~/.cargo/bin/zoxide ]]; then
|
||||||
|
export _ZO_ECHO=1
|
||||||
eval "$(zoxide init zsh)"
|
eval "$(zoxide init zsh)"
|
||||||
alias cd='z'
|
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Add table
Reference in a new issue