feat(nvim): remove plugins from python and markdown extended extras
This commit is contained in:
parent
526583d640
commit
8bd4110a9f
2 changed files with 0 additions and 57 deletions
|
@ -2,35 +2,6 @@ local filetype = { "markdown", "text", "tex", "plaintex", "norg" }
|
||||||
|
|
||||||
return {
|
return {
|
||||||
{ import = "lazyvim.plugins.extras.lang.markdown" },
|
{ import = "lazyvim.plugins.extras.lang.markdown" },
|
||||||
{
|
|
||||||
"gaoDean/autolist.nvim",
|
|
||||||
enabled = false,
|
|
||||||
ft = filetype,
|
|
||||||
opts = {},
|
|
||||||
keys = {
|
|
||||||
{ "<CR>", "<CR><cmd>AutolistNewBullet<cr>", mode = { "i" }, ft = filetype },
|
|
||||||
{ "o", "o<cmd>AutolistNewBullet<cr>", mode = { "n" }, ft = filetype },
|
|
||||||
{ "O", "O<cmd>AutolistNewBulletBefore<cr>", mode = { "n" }, ft = filetype },
|
|
||||||
{ "<CR>", "<cmd>AutolistToggleCheckbox<cr><CR>", mode = { "n" }, ft = filetype },
|
|
||||||
{ "<C-r>", "<cmd>AutolistRecalculate<cr>", mode = { "n" }, ft = filetype },
|
|
||||||
|
|
||||||
{ "].", "<cmd>AutolistCycleNext<cr>", mode = { "n" }, desc = "Next List Type", ft = filetype },
|
|
||||||
{ "[.", "<cmd>AutolistCyclePrev<cr>", mode = { "n" }, desc = "Prev List Type", ft = filetype },
|
|
||||||
|
|
||||||
{ ">>", ">><cmd>AutolistRecalculate<cr>", mode = { "n" }, ft = filetype },
|
|
||||||
{ "<<", "<<<cmd>AutolistRecalculate<cr>", mode = { "n" }, ft = filetype },
|
|
||||||
{ "dd", "dd<cmd>AutolistRecalculate<cr>", mode = { "n" }, ft = filetype },
|
|
||||||
{ "d", "d<cmd>AutolistRecalculate<cr>", mode = { "v" }, ft = filetype },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"antonk52/markdowny.nvim",
|
|
||||||
enabled = false,
|
|
||||||
ft = filetype,
|
|
||||||
opts = {
|
|
||||||
filetypes = filetype,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"mfussenegger/nvim-lint",
|
"mfussenegger/nvim-lint",
|
||||||
opts = {
|
opts = {
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
local package_prefix = "<leader>pp"
|
|
||||||
|
|
||||||
-- LSP Server to use for Python.
|
-- LSP Server to use for Python.
|
||||||
-- Set to "basedpyright" to use basedpyright instead of pyright.
|
-- Set to "basedpyright" to use basedpyright instead of pyright.
|
||||||
vim.g.lazyvim_python_lsp = "basedpyright"
|
vim.g.lazyvim_python_lsp = "basedpyright"
|
||||||
|
@ -15,32 +13,6 @@ return {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"MeanderingProgrammer/py-requirements.nvim",
|
|
||||||
enabled = false,
|
|
||||||
event = {
|
|
||||||
"BufRead requirements.txt",
|
|
||||||
},
|
|
||||||
dependencies = {
|
|
||||||
{ "nvim-lua/plenary.nvim" },
|
|
||||||
},
|
|
||||||
opts = {},
|
|
||||||
-- stylua: ignore
|
|
||||||
keys = {
|
|
||||||
{ package_prefix .. "u", function() require("py-requirements").upgrade() end, desc = "Update Package" },
|
|
||||||
{ package_prefix .. "i", function() require("py-requirements").show_description() end, desc = "Package Info" },
|
|
||||||
{ package_prefix .. "a", function() require("py-requirements").upgrade_all() end, desc = "Update All Packages" },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"folke/which-key.nvim",
|
|
||||||
opts = {
|
|
||||||
spec = {
|
|
||||||
{ "<leader>p", group = "packages/dependencies", icon = " " },
|
|
||||||
{ package_prefix, group = "python", icon = " " },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"luckasRanarison/nvim-devdocs",
|
"luckasRanarison/nvim-devdocs",
|
||||||
optional = true,
|
optional = true,
|
||||||
|
|
Loading…
Add table
Reference in a new issue