Skip to content

Commit

Permalink
misc
Browse files Browse the repository at this point in the history
  • Loading branch information
BakerNet committed Mar 30, 2024
1 parent 676c510 commit 5e209c2
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 26 deletions.
1 change: 1 addition & 0 deletions lua/plugins/debugging.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ return {
dependencies = {
-- Creates a beautiful debugger UI
'rcarriga/nvim-dap-ui',
'nvim-neotest/nvim-nio',

-- Installs the debug adapters for you
'williamboman/mason.nvim',
Expand Down
50 changes: 25 additions & 25 deletions lua/plugins/lsp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -155,31 +155,31 @@ local setup_lsp = function()
telemetry = { enable = false },
},
},
pylsp = {
pylsp = {
plugins = {
-- formatter options
black = { enabled = false },
autopep8 = { enabled = false },
yapf = { enabled = false },
-- linter options
ruff = { enabled = true },
pylint = { enabled = false, executable = "pylint" },
pyflakes = { enabled = false },
pycodestyle = { enabled = false },
mccabe = { enabled = false },
flake8 = { enabled = false },
-- type checker
pylsp_mypy = { enabled = false },
-- auto-completion options
jedi_completion = { fuzzy = true },
-- import sorting
isort = { enabled = true },
-- code actions
rope_autoimport = { enabled = true },
},
},
},
-- pylsp = {
-- pylsp = {
-- plugins = {
-- -- formatter options
-- black = { enabled = false },
-- autopep8 = { enabled = false },
-- yapf = { enabled = false },
-- -- linter options
-- ruff = { enabled = true },
-- pylint = { enabled = false, executable = "pylint" },
-- pyflakes = { enabled = false },
-- pycodestyle = { enabled = false },
-- mccabe = { enabled = false },
-- flake8 = { enabled = false },
-- -- type checker
-- pylsp_mypy = { enabled = false },
-- -- auto-completion options
-- jedi_completion = { fuzzy = true },
-- -- import sorting
-- isort = { enabled = true },
-- -- code actions
-- rope_autoimport = { enabled = true },
-- },
-- },
-- },
}

-- Setup neovim lua configuration
Expand Down
2 changes: 1 addition & 1 deletion lua/plugins/ui.lua
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ return {
-- OPTIONAL:
-- `nvim-notify` is only needed, if you want to use the notification view.
-- If not available, we use `mini` as the fallback
"ls-devs/nvim-notify",
"rcarriga/nvim-notify",
},
config = function()
require("noice").setup({
Expand Down

0 comments on commit 5e209c2

Please sign in to comment.