Mark McDonnell

Results 244 comments of Mark McDonnell

👋🏻 Sorry, only just circled back around to this. What exactly are the first two inputs? The latter three appear to be RGB from my testing but if I modify...

Looks like this works around the issue for now: https://github.com/folke/noice.nvim/issues/40#issuecomment-1272521226

@antoineco hi, yes I'm setting the highlight groups myself here: https://github.com/Integralist/dotfiles/blob/main/.config/nvim/lua/plugins/colorschemes.lua#L12-L32

> However, both $GOROOT and $GOPATH environment variables are not updated. Does that break anything for you? e.g. do any of your Go projects not compile? I don't understand the...

Here's my workaround that seems to work for me (e.g. re-sourcing the .zshrc every time I change directory)... ```zsh # Standard configuration... if [ ! -d "$HOME/.goenv" ]; then git...

@ankitcharolia thanks, I'll try it out. What's the rationale for this fork? Are there significant issues with the current version, and what has been changed in the fork? Thanks

@dicebattle this is my approach now https://github.com/Integralist/dotfiles/blob/main/.zshrc#L574-L596 https://github.com/Integralist/dotfiles/blob/main/.zshrc#L517-L527 Again, not perfect but does the job better than before

@dannyneira how would this help in a case like: ``` bindkey '^f' fzf ``` I can't override the default keymap because (as far as I understand the implementation) I have...

Yeah, I agree, a new constructor would be the better way to go here. I presume the addition of a new constructor would still require threading changes through the call...