Open Heus-Sueh opened 9 months ago
I'm not a maintainer, but I just put this in user.nix:
programs.zsh = {
enable = true;
envExtra = ''
export EDITOR='nvim'
export VISUAL='nvim'
export LESS=FRX
export BAT_STYLE=plain
'';
oh-my-zsh = {
enable = true;
plugins = [ "git" "gitfast" ] ;
extraConfig = ''
autoload -Uz compinit
compinit
autoload -U select-word-style
'';
};
Is your feature request related to a problem? Please describe. The problem I'm facing is when trying to install a plugin or theme for zsh and always having to open the .zshrc as sudo because it is read-only
Describe the solution you'd like Support for oh my zsh and other shell configuration frameworks
Describe alternatives you've considered
fleek edit shell-config
or another command that allows you to edit the current shell configuration without having to use sudo all the timeAdditional context