diff --git a/_zshrc b/_zshrc index feca1dd..6126eec 100755 --- a/_zshrc +++ b/_zshrc @@ -31,6 +31,7 @@ function zle-keymap-select { zle -N zle-keymap-select [ -f "$HOME/.bashrc" ] && emulate sh -c "source $HOME/.bashrc" +[ -f "$HOME/./config/bashrc" ] && emulate sh -c "source $HOME/./config/bashrc" [ -f "/usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" ] && source "/usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" [ -f "/usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh" ] && source "/usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh" diff --git a/flake.nix b/flake.nix index 5960117..4b7630d 100644 --- a/flake.nix +++ b/flake.nix @@ -103,7 +103,7 @@ # Link dotfiles without forcing overwrite (fails safely if a file already exists) home.file.".tmux.conf".source = ./_tmux.conf; home.file.".config/zshrc".source = ./_zshrc; - home.file.".bashrc".source = ./_bashrc; + home.file.".config/bashrc".source = ./_config/bashrc; home.file.".local/share/nvim/site/autoload/plug.vim".source = pkgs.fetchurl { url = "https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim";