feat: remove some unused plugins
This commit is contained in:
parent
85c7807e5c
commit
c17d6bd7ed
@ -1,23 +0,0 @@
|
|||||||
return {
|
|
||||||
"luukvbaal/statuscol.nvim",
|
|
||||||
lazy = false,
|
|
||||||
config = function()
|
|
||||||
local builtin = require("statuscol.builtin")
|
|
||||||
require("statuscol").setup({
|
|
||||||
--configuration goes here, for example:
|
|
||||||
relculright = false,
|
|
||||||
segments = {
|
|
||||||
-- { text = { builtin.foldfunc }, click = "v:lua.ScFa" },
|
|
||||||
{
|
|
||||||
sign = { name = { "Diagnostic" }, maxwidth = 2, auto = true },
|
|
||||||
click = "v:lua.ScSa"
|
|
||||||
},
|
|
||||||
{ text = { builtin.lnumfunc }, click = "v:lua.ScLa", },
|
|
||||||
{
|
|
||||||
sign = { name = { ".*" }, maxwidth = 2, colwidth = 1, auto = true, wrap = true },
|
|
||||||
click = "v:lua.ScSa"
|
|
||||||
},
|
|
||||||
}
|
|
||||||
})
|
|
||||||
end,
|
|
||||||
}
|
|
@ -1,6 +1,6 @@
|
|||||||
return {
|
return {
|
||||||
"nvim-treesitter/nvim-treesitter",
|
"nvim-treesitter/nvim-treesitter",
|
||||||
event = "VeryLazy",
|
event = "BufReadPre",
|
||||||
enable = false,
|
enable = false,
|
||||||
dependencies = {
|
dependencies = {
|
||||||
"nvim-treesitter/nvim-treesitter-textobjects",
|
"nvim-treesitter/nvim-treesitter-textobjects",
|
||||||
@ -8,10 +8,11 @@ return {
|
|||||||
"windwp/nvim-ts-autotag",
|
"windwp/nvim-ts-autotag",
|
||||||
},
|
},
|
||||||
config = function()
|
config = function()
|
||||||
|
vim.g.skip_ts_context_commentstring_module = true
|
||||||
|
require("ts_context_commentstring").setup {
|
||||||
|
enable_autocmd = false
|
||||||
|
};
|
||||||
require("nvim-treesitter.configs").setup({
|
require("nvim-treesitter.configs").setup({
|
||||||
context_commentstring = {
|
|
||||||
enable = true
|
|
||||||
},
|
|
||||||
ignore_install = {},
|
ignore_install = {},
|
||||||
sync_install = false,
|
sync_install = false,
|
||||||
auto_install = true,
|
auto_install = true,
|
||||||
|
@ -1,7 +0,0 @@
|
|||||||
return {
|
|
||||||
"folke/which-key.nvim",
|
|
||||||
event = "VeryLazy",
|
|
||||||
config = function()
|
|
||||||
require("which-key").setup({})
|
|
||||||
end,
|
|
||||||
}
|
|
@ -13,3 +13,5 @@
|
|||||||
smudge = git-lfs smudge -- %f
|
smudge = git-lfs smudge -- %f
|
||||||
process = git-lfs filter-process
|
process = git-lfs filter-process
|
||||||
required = true
|
required = true
|
||||||
|
[url "git@github.com:"]
|
||||||
|
insteadOf = https://github.com/
|
||||||
|
Loading…
Reference in New Issue
Block a user