[nvim] cleanup old stuff
This commit is contained in:
parent
6f44bdbce2
commit
40bc6fca8d
4 changed files with 42 additions and 25 deletions
|
@ -16,7 +16,6 @@ return {
|
||||||
{
|
{
|
||||||
"smjonas/inc-rename.nvim",
|
"smjonas/inc-rename.nvim",
|
||||||
opts = {
|
opts = {
|
||||||
input_buffer_type = "dressing",
|
|
||||||
save_in_cmdline_history = false,
|
save_in_cmdline_history = false,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -20,12 +20,6 @@ return {
|
||||||
end, { desc = "Previous todo comment" })
|
end, { desc = "Previous todo comment" })
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"TobinPalmer/pastify.nvim",
|
|
||||||
event = "VeryLazy",
|
|
||||||
cmd = { "Pastify" },
|
|
||||||
opts = {},
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
'eandrju/cellular-automaton.nvim',
|
'eandrju/cellular-automaton.nvim',
|
||||||
config = function()
|
config = function()
|
||||||
|
|
|
@ -27,13 +27,6 @@ return {
|
||||||
treesitter.setup(options)
|
treesitter.setup(options)
|
||||||
end
|
end
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"nvim-treesitter/nvim-treesitter-context",
|
|
||||||
event = "VeryLazy",
|
|
||||||
config = function()
|
|
||||||
require 'treesitter-context'.setup()
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
'echasnovski/mini.ai',
|
'echasnovski/mini.ai',
|
||||||
event = "VeryLazy",
|
event = "VeryLazy",
|
||||||
|
|
|
@ -8,22 +8,53 @@ return {
|
||||||
vim.g.tpipeline_statusline = '%=%l:%c'
|
vim.g.tpipeline_statusline = '%=%l:%c'
|
||||||
end
|
end
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"j-hui/fidget.nvim",
|
|
||||||
opts = {
|
|
||||||
progress = {
|
|
||||||
display = {
|
|
||||||
render_limit = 3,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
},
|
|
||||||
--Better quick fix
|
|
||||||
{
|
{
|
||||||
'kevinhwang91/nvim-bqf',
|
'kevinhwang91/nvim-bqf',
|
||||||
event = "VeryLazy",
|
event = "VeryLazy",
|
||||||
ft = 'qf'
|
ft = 'qf'
|
||||||
},
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
"folke/noice.nvim",
|
||||||
|
event = "VeryLazy",
|
||||||
|
opts = {
|
||||||
|
views = {
|
||||||
|
cmdline_popup = {
|
||||||
|
position = {
|
||||||
|
row = "100%",
|
||||||
|
col = "0%",
|
||||||
|
},
|
||||||
|
size = {
|
||||||
|
min_width = 60,
|
||||||
|
width = "auto",
|
||||||
|
height = "auto",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
cmdline_popupmenu = {
|
||||||
|
relative = "editor",
|
||||||
|
position = {
|
||||||
|
row = "85%",
|
||||||
|
col = "0%",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
lsp = {
|
||||||
|
override = {
|
||||||
|
["vim.lsp.util.convert_input_to_markdown_lines"] = true,
|
||||||
|
["vim.lsp.util.stylize_markdown"] = true,
|
||||||
|
["cmp.entry.get_documentation"] = true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
presets = {
|
||||||
|
long_message_to_split = true, -- long messages will be sent to a split
|
||||||
|
inc_rename = true, -- enables an input dialog for inc-rename.nvim
|
||||||
|
},
|
||||||
|
},
|
||||||
|
dependencies = {
|
||||||
|
"MunifTanjim/nui.nvim",
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
-- {
|
-- {
|
||||||
-- "OXY2DEV/markview.nvim",
|
-- "OXY2DEV/markview.nvim",
|
||||||
-- ft = "markdown",
|
-- ft = "markdown",
|
||||||
|
|
Loading…
Reference in a new issue