Abin Simon

Results 250 comments of Abin Simon

@OldWorldOrdr I'm not sure how you configure Window terminal, but could you paste the color configuration. Ideally from what I understand both `1;34` and `38;5;4` `1` should give you the...

It just hit me. A lot of terminal emulators enable "Use bright text for bold colors" [option](https://github.com/microsoft/terminal/issues/3613). With this enabled, if something is bold, it automatically makes it bright. This...

@beedaddy See my previous message [here](https://github.com/Peltoche/lsd/issues/609#issuecomment-1034464182). You said you are using gnome. Just from that, if you are using gnome-terminal then this checkbox at the bottom is the one that...

Thanks @beedaddy for verifying the issue. The issue here is that older version of lsd relied on 8/16 colors which would change colors based on if this option is enabled...

R support should now be available from https://github.com/emacs-tree-sitter/tree-sitter-langs/pull/132 and https://github.com/emacs-tree-sitter/tree-sitter-langs/pull/133

Here is a possible another case: ``` go package fact func Factorial(x int) int { return x * Factorial(x - 1, ) } ``` converted to: ``` go package fact...

I guess this can now be closed :D

@sathishmanohar I don't use awesome anymore, but here is what I had in my config. https://github.com/meain/dotfiles/blob/fa63ed2931687bcafb50b229f90b878b8c0380d4/awesome/.config/awesome/rc.lua#L901-L916

Possibly related: If I try to format the following code which is a function returning a list, the formatting is a bit off. Expected: ```nix { utils, ... }: utils.create_list...

I think not highlighting it is how `yaml-mode` does it by default. Looking at [neovim implementation](https://github.com/nvim-treesitter/nvim-treesitter/blob/add1864bbf2d3b8e789ec6b4715bb5a4073e3b60/queries/yaml/highlights.scm#L3-L6), it seems to be the same as well. And so, I personally think we...