diff --git a/flake.lock b/flake.lock index f3aca01..6b1eb3d 100644 --- a/flake.lock +++ b/flake.lock @@ -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, diff --git a/flake.nix b/flake.nix index 16bb6a4..d2dec7c 100644 --- a/flake.nix +++ b/flake.nix @@ -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; diff --git a/modules/programs/nvim/plugins/lua/statuscol-nvim.lua b/modules/programs/nvim/plugins/lua/statuscol-nvim.lua deleted file mode 100644 index f3d2c67..0000000 --- a/modules/programs/nvim/plugins/lua/statuscol-nvim.lua +++ /dev/null @@ -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", - }, - }, -})