plugin: argwrap, auto wrap args + disable drop.nvim (screensaver)

master
blob42 12 months ago
parent e73e01ab95
commit 6fcaa2c7d5

@ -0,0 +1,2 @@
let g:abolish_save_file = "/home/spike/.config/nvim/after/plugin/abolish.vim"
Abolish place{ho,h}ler{} placeholder

@ -335,6 +335,8 @@ M.general = { --{{{
"notify <scripts/utils/fifo_watch>"
}, ]]
["<leader>A"] = { "<cmd>ArgWrap<CR>", "arg wrap" },
-- TODO: move to lspconfig section
-- ["<leader>lsp"] = { "<cmd> lua require('custom.plugins.configs.navigator').enable()<CR>", "lsp enable"},

@ -226,6 +226,7 @@ local config = {
autopep8 = { enabled = false },
-- pylint = { enabled = false }, -- disabled in null-ls
flake8 = { enabled = false },
mccabe = { enabled = false },
pycodestyle= { enabled = false},
pyflakes = { enabled = false },
}

@ -82,10 +82,14 @@ return {
end
},
-- Treesitter dev/exploration tool
["nvim-treesitter/playground"] = {
-- https://git.blob42.xyz/blob42/playground/commit/460fe1b3e3b2971c52c5f02a7dbbb132f1f30584
-- ["nvim-treesitter/playground"] = {
["https://git.blob42.xyz/blob42/playground"] = {
lock = true,
opt = true,
cmd = { "TSPlayground*" },
commit = "460fe1b3e3b2971c52c5f02a7dbbb132f1f30584",
},
["nvim-treesitter/nvim-treesitter-context"] = {
@ -256,6 +260,12 @@ return {
cmd = {"Tabularize"}
}, -- }}}
["FooSoft/vim-argwrap"] = {
-- setup = function()
--
-- end
},
-- ["p00f/nvim-ts-rainbow"] = {
-- opt = true,
@ -322,12 +332,12 @@ return {
-- scren saver
["folke/drop.nvim"] = {
opt = true,
config = function()
require("drop").setup()
end
},
-- ["folke/drop.nvim"] = {
-- opt = true,
-- config = function()
-- require("drop").setup()
-- end
-- },
-- repeat operator for plugin commands
["tpope/vim-repeat"] = {

Loading…
Cancel
Save