Compare commits

..

No commits in common. "903b70b59df823ee97186d4822480ed17cc6561b" and "c775ba3fa5ed5c02132f099bac4ffd27d3450e93" have entirely different histories.

2 changed files with 2 additions and 3 deletions

View file

@ -64,7 +64,7 @@ local python_root_dir = function(fname)
util.path.dirname(fname)
end
nvim_lsp.ruff.setup({
nvim_lsp.ruff_lsp.setup({
on_attach = on_attach,
capabilities = capabilities,
root_dir = python_root_dir
@ -79,7 +79,7 @@ nvim_lsp.pylsp.setup({
pylsp = {
plugins = {
ruff = {
enabled = false -- now through ruff lsp
enabled = false -- now through ruff_lsp
}
}
}

View file

@ -20,7 +20,6 @@ vim.o.hidden = true
-- folding
vim.o.foldmethod = 'expr'
vim.o.foldlevel = 99
vim.o.foldexpr = 'v:lua.vim.treesitter.foldexpr()'
-- don't open folds when jumping over one with (, {, [[ or [{