Tommaso Laurenzi
Tommaso Laurenzi
Do your statuslines have a `condition` set? That function breaks the evaluation of children to the first children whose condition evaluates to true, or to the first children that does...
## use of `nvim_set_hl` This change passes the `hl` component field to api function `nvim_set_hl`, so it takes the same syntax for defining highlights using the api. The only exceptional...
yes my friend. I have recently added the support for themes, so expect more to come :)
Hi! Yes it's been some time. I am not currently working on this, but I have playing with kanagawa.themes in my todo list. If you want to experiment with this,...
That isn't bad at all! After some experiments my idea is the following: - Invert bg and fg - Use the same tints of colors for syntax elements but adjust...
still need serious tweakings but that's the general idea.
> What do you prefer to do here? Replace with some theme alias (like `crystalBlue` with `fn`)? There are duplicates there, what should be done then? That should be optimal,...
Yes, I am thinking about a rewrite of UI colors shades to better support various elements with minimal overlapping, like: - `Folded` - `CursorLine` / `CursorColumn` - `NormalFloat` - `WinSeparator`...
Hi! Any news on this?
this works for me * approach n. 1 ```lua [""] = function(prompt_bufnr) vim.cmd.stopinsert() vim.defer_fn(function() actions.select_default(prompt_bufnr) end, 10) end ``` * approach n. 2 ```lua local function use_normal_mapping(key) return function() vim.cmd.stopinsert()...