feat!: remove statuscol-nvim

nixos
Moritz Böhme 2024-06-17 11:12:45 +02:00
parent ed9c5111e4
commit fad19c6a58
Signed by: moritz
GPG Key ID: 970C6E89EB0547A9
3 changed files with 0 additions and 42 deletions

View File

@ -1132,7 +1132,6 @@
"river": "river",
"smartcolumn-nvim": "smartcolumn-nvim",
"stable": "stable",
"statuscol-nvim": "statuscol-nvim",
"telekasten-nvim": "telekasten-nvim",
"timers": "timers"
}
@ -1169,23 +1168,6 @@
"type": "github"
}
},
"statuscol-nvim": {
"flake": false,
"locked": {
"lastModified": 1714347907,
"narHash": "sha256-Rl0VlsExASyx0+Le7VsY4aVQ+LqFWknZSFh40qGWEHI=",
"owner": "luukvbaal",
"repo": "statuscol.nvim",
"rev": "ef3617d0c8cfaa29f7bcdaa8b7cc35df2a409bae",
"type": "github"
},
"original": {
"owner": "luukvbaal",
"ref": "0.10",
"repo": "statuscol.nvim",
"type": "github"
}
},
"systems": {
"locked": {
"lastModified": 1681028828,

View File

@ -39,8 +39,6 @@
telekasten-nvim.url = "github:renerocksai/telekasten.nvim";
neotest-python.flake = false;
neotest-python.url = "github:MoritzBoehme/neotest-python/fix-runtimepath-search";
statuscol-nvim.flake = false;
statuscol-nvim.url = "github:luukvbaal/statuscol.nvim/0.10"; # HACK: fix for neovim-nightly
gen-nvim.flake = false;
gen-nvim.url = "github:David-Kunz/gen.nvim";
hawtkeys-nvim.flake = false;

View File

@ -1,22 +0,0 @@
vim.o.fillchars = [[eob: ,fold: ,foldopen:,foldsep: ,foldclose:]]
local builtin = require("statuscol.builtin")
require("statuscol").setup({
segments = {
{
sign = { name = { ".*" }, auto = true },
click = "v:lua.ScSa",
},
{
text = { builtin.lnumfunc },
click = "v:lua.ScLa",
},
{
sign = { namespace = { "gitsigns*" }, auto = true },
click = "v:lua.ScSa",
},
{
text = { builtin.foldfunc, "" },
click = "v:lua.ScFa",
},
},
})