changes from migration to fedora
parent
6f79c01608
commit
f401e327ac
|
@ -71,7 +71,7 @@ next-message-on-delete=true
|
|||
# list of directories.
|
||||
#
|
||||
# default: /usr/local/share/aerc/stylesets/
|
||||
stylesets-dirs=@SHAREDIR@/stylesets/
|
||||
stylesets-dirs=/usr/share/aerc/stylesets/
|
||||
|
||||
# Sets the styleset to use for the aerc ui elements.
|
||||
#
|
||||
|
@ -163,9 +163,9 @@ address-book-cmd=khard email --parsable --search-in-source-files --remove-first-
|
|||
# You can also match on non-mimetypes, by prefixing with the header to match
|
||||
# against (non-case-sensitive) and a comma, e.g. subject,text will match a
|
||||
# subject which contains "text". Use header,~regex to match against a regex.
|
||||
subject,~^\[PATCH=awk -f @SHAREDIR@/filters/hldiff
|
||||
text/html=@SHAREDIR@/filters/html
|
||||
text/*=awk -f @SHAREDIR@/filters/plaintext
|
||||
subject,~^\[PATCH=awk -f /usr/share/aerc/filters/hldiff
|
||||
text/html=/usr/share/aerc/filters/html
|
||||
text/*=awk -f /usr/share/aerc/filters/plaintext
|
||||
#image/*=catimg -w $(tput cols) -
|
||||
|
||||
[triggers]
|
||||
|
@ -187,7 +187,7 @@ new-email=exec notify-send "aerc: you have a new email"
|
|||
# list of directories.
|
||||
#
|
||||
# default: /usr/local/share/aerc/templates/
|
||||
template-dirs=/home/earne/.config/aerc/templates:@SHAREDIR@/templates/
|
||||
template-dirs=/home/earne/.config/aerc/templates:/usr/share/aerc/templates/
|
||||
|
||||
# The template to be used for quoted replies.
|
||||
#
|
||||
|
|
|
@ -34,8 +34,8 @@
|
|||
default = current
|
||||
|
||||
# sudo apt install libsecret-1-0 libsecret-1-dev -y && sudo make --directory=/usr/share/doc/git/contrib/credential/libsecret
|
||||
[credential]
|
||||
helper = /usr/share/doc/git/contrib/credential/libsecret/git-credential-libsecret
|
||||
# [credential]
|
||||
# helper = /usr/share/doc/git/contrib/credential/libsecret/git-credential-libsecret
|
||||
|
||||
#[sendemail]
|
||||
# smtpserver = mail.example.com
|
||||
|
|
|
@ -12,7 +12,7 @@ export XDG_DATA_HOME="$HOME/.local/share"
|
|||
export XDG_CACHE_HOME="$HOME/.cache"
|
||||
|
||||
# Make nix's desktop files show up
|
||||
export XDG_DATA_DIRS="$HOME/.nix-profile/share:$XDG_DATA_DIRS"
|
||||
# export XDG_DATA_DIRS="$HOME/.nix-profile/share:$XDG_DATA_DIRS"
|
||||
|
||||
export LANG=en_CA.UTF-8
|
||||
# TZ
|
||||
|
@ -32,24 +32,15 @@ path_add_end(){
|
|||
path_add "$HOME/.local/bin"
|
||||
path_add "$HOME/.config/shell/bin"
|
||||
|
||||
# Doom Emacs
|
||||
path_add "$HOME/.config/emacs/bin"
|
||||
|
||||
# Rust, cargo
|
||||
export CARGO_HOME="$XDG_DATA_HOME/cargo"
|
||||
[ -f $CARGO_HOME/env ] && . "$CARGO_HOME/env"
|
||||
|
||||
# golang
|
||||
path_add "/usr/local/go/bin"
|
||||
export GOPROXY=direct
|
||||
export GOPATH="$XDG_DATA_HOME/go"
|
||||
path_add "$GOPATH/bin"
|
||||
|
||||
# node, npm, yarn
|
||||
export NVM_DIR="$HOME/.config/nvm"
|
||||
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
||||
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
|
||||
|
||||
export NPM_CONFIG_USERCONFIG="$XDG_CONFIG_HOME/npm/npmrc"
|
||||
|
||||
export PATH # just in case
|
||||
|
|
Loading…
Reference in New Issue