This commit is contained in:
Oshgnacknak 2025-09-06 23:36:29 +02:00
parent 83842f1759
commit 99be54d657
Signed by: Oshgnacknak
GPG key ID: 8CB7375654585956

View file

@ -48,7 +48,10 @@
syntaxHighlighting.enable = true; syntaxHighlighting.enable = true;
initExtra = '' initExtra = ''
[ -f "$HOME/.bashrc" ] && emulate sh -c "source $HOME/.bashrc" source ${pkgs.fzf}/share/fzf/key-bindings.zsh
source ${pkgs.fzf}/share/fzf/completion.zsh
[ -f "$HOME/.zshrc" ] && emulate sh -c "source $HOME/.zshrc"
''; '';
zplug = { zplug = {
@ -76,6 +79,8 @@
# Example: link dotfiles without forcing overwrite # Example: link dotfiles without forcing overwrite
# (fails safely if a file already exists) # (fails safely if a file already exists)
home.file.".tmux.conf".source = ./_tmux.conf; home.file.".tmux.conf".source = ./_tmux.conf;
home.file.".zshrc".source = ./_zshrc;
home.file.".bashrc".source = ./_bashrc;
home.file.".local/share/nvim/site/autoload/plug.vim".source = pkgs.fetchurl { home.file.".local/share/nvim/site/autoload/plug.vim".source = pkgs.fetchurl {
url = "https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim"; url = "https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim";