Changeset 5211578 in dotfiles for guix/.dotfiles/.bash_profile


Ignore:
Timestamp:
Sep 25, 2024, 11:43:27 PM (7 weeks ago)
Author:
Mikhail Kirillov <w96k@…>
Branches:
master
Children:
ead573e
Parents:
fc6fa17
Message:

Update dotfiles

File:
1 edited

Legend:

Unmodified
Added
Removed
  • guix/.dotfiles/.bash_profile

    rfc6fa17 r5211578  
    66
    77# Prepend setuid programs.
    8 export PATH=/run/setuid-programs:$PATH
     8export PATH=/run/setuid-programs:$PATH:$HOME/.bin:$PATH
     9export EMACSLOADPATH=$EMACSLOADPATH:$HOME/.emacs.d/elpa
     10export GTAGSLIBPATH=$GTAGSLIBPATH:$HOME/.guix-home/profile/include
    911
    10 export PATH=$HOME/.bin:$PATH
     12# export https_proxy=https://localhost:9250
     13export http_proxy=https://localhost:9250
     14export SOCKS_SERVER=localhost:9050
    1115
    12 export EMACSLOADPATH=$EMACSLOADPATH:$HOME/.emacs.d/elpa
     16# Set up the system, user profile, and related variables.
     17# /etc/profile will be sourced by bash automatically
     18# Set up the home environment profile.
     19if [ -f ~/.profile ]; then source ~/.profile; fi
     20
     21# Honor per-interactive-shell startup file
     22if [ -f ~/.bashrc ]; then source ~/.bashrc; fi
Note: See TracChangeset for help on using the changeset viewer.