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
|
||||
lua << EOF
|
||||
local nvim_lsp = require'nvim_lsp'
|
||||
nvim_lsp.ocamlls.setup{}
|
||||
nvim_lsp.pyls.setup{
|
||||
local lspconfig = require'lspconfig'
|
||||
lspconfig.ocamlls.setup{}
|
||||
lspconfig.pyls.setup{
|
||||
settings = {
|
||||
pyls = {
|
||||
configurationSources = { "pyls-black", flake8 }
|
||||
}
|
||||
}
|
||||
}
|
||||
nvim_lsp.rust_analyzer.setup{}
|
||||
nvim_lsp.solargraph.setup{}
|
||||
nvim_lsp.yamlls.setup{}
|
||||
lspconfig.rust_analyzer.setup{}
|
||||
lspconfig.solargraph.setup{}
|
||||
lspconfig.yamlls.setup{}
|
||||
EOF
|
||||
|
||||
set background=dark
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
if [[ -x ~/.cargo/bin/zoxide ]]; then
|
||||
export _ZO_ECHO=1
|
||||
eval "$(zoxide init zsh)"
|
||||
alias cd='z'
|
||||
fi
|
||||
|
|
Loading…
Add table
Reference in a new issue