Sivert V. Sæther
b3d85445c5
Good start Added roles for setting up a user with zsh config and ssh keys Also installation and configuriation of some packages
16 lines
785 B
Bash
16 lines
785 B
Bash
#!/bin/sh
|
|
export LS_COLORS='di=1;35:fi=0:ln=31:pi=5:so=5:bd=5:cd=5:or=31:mi=0:ex=35:*.rpm=90:*.png=35:*.gif=36:*.jpg=35:*.c=92:*.jar=33:*.py=93:*.h=90:*.txt=94:*.doc=104:*.docx=104:*.odt=104:*.csv=102:*.xlsx=102:*.xlsm=102:*.rb=31:*.cpp=92:*.sh=92:*.html=96:*.zip=4;33:*.tar.gz=4;33:*.mp4=105:*.mp3=106'
|
|
[ -d ~/.npm/node_modules/.bin ] && PATH=~/.npm/node_modules/.bin:$PATH
|
|
[ -d ~/.go/bin ] && PATH=~/.go/bin:$PATH
|
|
[ -d ~/.cargo/bin ] && PATH=~/.cargo/bin:$PATH
|
|
[ -d ~/.local/bin ] && PATH=~/.local/bin:$PATH
|
|
[ -d ~/.emacs.d/bin ] && PATH=~/.emacs.d/bin:$PATH
|
|
[ -e ~/.aliases ] && source ~/.aliases
|
|
export EDITOR=/usr/bin/vim
|
|
export HISTFILE=~/.histfile
|
|
export HISTSIZE=42069
|
|
export SAVEHIST=42069
|
|
export PAGER="less"
|
|
export BAT_CONFIG_PATH=~/.bat.conf
|
|
export GOPATH=~/.go
|
|
export PATH |