mirror of
https://github.com/MillironX/dotfiles.git
synced 2024-11-22 13:29:56 +00:00
Compare commits
No commits in common. "455d5636a77e38260f0b867ee74734ba7af60690" and "48197dcaf724f4fe572634dbd540a306d5d72030" have entirely different histories.
455d5636a7
...
48197dcaf7
8 changed files with 21 additions and 53 deletions
|
@ -4,14 +4,12 @@ if [ $(command -v pipx) ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Preferred editor for local and remote sessions
|
# Preferred editor for local and remote sessions
|
||||||
if [ $(command -v nvim) ]; then
|
if [ $(command -v nano) ]; then
|
||||||
export EDITOR=nvim
|
|
||||||
elif [ $(command -v nano) ]; then
|
|
||||||
export EDITOR=nano
|
export EDITOR=nano
|
||||||
elif [ $(command -v vim) ]; then
|
|
||||||
export EDITOR=vim
|
|
||||||
elif [ $(command -v emacs) ]; then
|
elif [ $(command -v emacs) ]; then
|
||||||
export EDITOR='emacs -nw'
|
export EDITOR='emacs -nw'
|
||||||
|
elif [ $(command -v vim) ]; then
|
||||||
|
export EDITOR=vim
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ $(command -v kate) ]; then
|
if [ $(command -v kate) ]; then
|
||||||
|
|
10
dot_hooks
Normal file
10
dot_hooks
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
if [ -f $HOME/.rbenv/bin/rbenv ]; then
|
||||||
|
export PATH="$HOME/.rbenv/bin:$PATH"
|
||||||
|
eval "$(rbenv init -)"
|
||||||
|
export PATH="$HOME/.rbenv/plugins/ruby-build/bin:$PATH"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ $(command -v n) ]; then
|
||||||
|
export N_PREFIX=$HOME/.n
|
||||||
|
export PATH="$HOME/.n/bin:$PATH"
|
||||||
|
fi
|
|
@ -1,21 +0,0 @@
|
||||||
if [ -f $HOME/.rbenv/bin/rbenv ]; then
|
|
||||||
export PATH="$HOME/.rbenv/bin:$PATH"
|
|
||||||
eval "$(rbenv init -)"
|
|
||||||
export PATH="$HOME/.rbenv/plugins/ruby-build/bin:$PATH"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ $(command -v n) ]; then
|
|
||||||
export N_PREFIX=$HOME/.n
|
|
||||||
export PATH="$HOME/.n/bin:$PATH"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -f $HOME/.ion/bin/ion ]; then
|
|
||||||
export PATH="$HOME/.ion/bin/ion:$PATH"
|
|
||||||
export FPATH="$HOME/.ion/completions:$FPATH"
|
|
||||||
fi
|
|
||||||
|
|
||||||
{{- if eq .machinetype "workstation" }}
|
|
||||||
export GPG_TTY="$(tty)"
|
|
||||||
export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
|
|
||||||
gpgconf --launch gpg-agent
|
|
||||||
{{- end }}
|
|
13
dot_profile
13
dot_profile
|
@ -7,19 +7,6 @@ if [ -d $HOME/.julia/juliaup/bin ]; then
|
||||||
export PATH="$HOME/.julia/juliaup/bin:$PATH"
|
export PATH="$HOME/.julia/juliaup/bin:$PATH"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# >>> juliaup initialize >>>
|
|
||||||
|
|
||||||
# !! Contents within this block are managed by juliaup !!
|
|
||||||
|
|
||||||
case ":$PATH:" in
|
|
||||||
*:/home/millironx/.juliaup/bin:*)
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
export PATH=/home/millironx/.juliaup/bin${PATH:+:${PATH}}
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
# <<< juliaup initialize <<<
|
|
||||||
|
|
||||||
# Linuxbrew setup
|
# Linuxbrew setup
|
||||||
if [ -d $HOME/../linuxbrew/.linuxbrew ]; then
|
if [ -d $HOME/../linuxbrew/.linuxbrew ]; then
|
||||||
BREWPATH=$HOME/../linuxbrew/.linuxbrew
|
BREWPATH=$HOME/../linuxbrew/.linuxbrew
|
||||||
|
|
2
dot_tmux.conf
Normal file
2
dot_tmux.conf
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
set -g default-terminal "tmux-256color"
|
||||||
|
source "/usr/share/tmux/powerline.conf"
|
|
@ -1,6 +0,0 @@
|
||||||
set -g default-terminal "tmux-256color"
|
|
||||||
{{- if (eq .chezmoi.osRelease.id "debian") }}
|
|
||||||
source "/usr/share/powerline/bindings/tmux/powerline.conf"
|
|
||||||
{{- else -}}
|
|
||||||
source "/usr/share/tmux/powerline.conf"
|
|
||||||
{{- end }}
|
|
|
@ -1,9 +1,9 @@
|
||||||
[user]
|
[user]
|
||||||
name = "Thomas A. Christensen II"
|
name = {{ .name }}
|
||||||
email = "25492070+MillironX@users.noreply.github.com"
|
email = {{ .email }}
|
||||||
signingkey = 0xD5F50D10552A4BEC
|
signingkey = {{ .pubkey }}
|
||||||
[core]
|
[core]
|
||||||
editor = nvim
|
editor = nano
|
||||||
[credential]
|
[credential]
|
||||||
helper = store
|
helper = store
|
||||||
[color]
|
[color]
|
||||||
|
@ -14,11 +14,9 @@
|
||||||
user = MillironX
|
user = MillironX
|
||||||
[pull]
|
[pull]
|
||||||
rebase = false
|
rebase = false
|
||||||
[safe]
|
|
||||||
directory = /var/docker
|
|
||||||
{{- if eq .machinetype "workstation" }}
|
|
||||||
[commit]
|
[commit]
|
||||||
gpgsign = true
|
gpgsign = true
|
||||||
|
{{- if eq .chezmoi.osRelease.id "fedora" }}
|
||||||
[diff]
|
[diff]
|
||||||
tool = kdiff3
|
tool = kdiff3
|
||||||
[merge]
|
[merge]
|
||||||
|
|
|
@ -21,7 +21,7 @@ fi
|
||||||
if [[ ! -f "$HOME/antigen.zsh" ]]; then
|
if [[ ! -f "$HOME/antigen.zsh" ]]; then
|
||||||
curl -L git.io/antigen > $HOME/antigen.zsh
|
curl -L git.io/antigen > $HOME/antigen.zsh
|
||||||
fi
|
fi
|
||||||
source "$HOME/antigen.zsh"
|
source "$HOME/.antigen.zsh"
|
||||||
|
|
||||||
# Load the oh-my-zsh library
|
# Load the oh-my-zsh library
|
||||||
antigen use oh-my-zsh
|
antigen use oh-my-zsh
|
||||||
|
|
Loading…
Reference in a new issue