Closed amaanq closed 1 year ago
Hmm, I'm not sure that I get what you're trying to do. Do you want to separate the git signs from the default sign column, or to place all signs in general after the line number?
For the former I think this is covered by https://github.com/luukvbaal/statuscol.nvim/issues/9? In which case thanks for the gist, it might prove useful when I get around to implementing something for it.
But if you just want to place all signs in general after the sign column, you should be able to use to use something like
require("statuscol").setup({setopt = true, order = { "FNSs"})
require("statuscol").setup({setopt = true, order = { "FNSs"})
@luukvbaal I tried this but it doesn't work to achieve the first image by OP.
order
is deprecated, this plugin now implements a segments
config that provides more flexibility. See here for an example: https://github.com/luukvbaal/statuscol.nvim/issues/9#issuecomment-1471982148.
@luukvbaal I love this :) Thanks a lot (and I just saw the thread where you made a lot of contributions on merging smoothscroll
minutes ago, am using it now)
(I don't mind if you want to use this image in your README)
Really liking this plugin, but it's conflicting with a current setup I have to show git diffs/changes after the line nr.
Example (look right after the line numbers):
Code snippet to add this:
status.lua
Having this and statuscol pushes this git diff feature to the left of line nrs, like so:
I understand it's a bit of work to add this, but it'd be really nice to see!
Thanks, Amaan