Updated .bashrc and added headers
This commit is contained in:
parent
77333b233d
commit
b39b1512ab
3 changed files with 18 additions and 6 deletions
14
.bashrc
14
.bashrc
|
@ -1,21 +1,23 @@
|
|||
#
|
||||
# ~/.bashrc
|
||||
# Author: Adam Gausmann
|
||||
#
|
||||
|
||||
# If not running interactively, don't do anything
|
||||
[[ $- != *i* ]] && return
|
||||
|
||||
#Colors
|
||||
# Color aliases
|
||||
alias ls='ls --color=auto'
|
||||
|
||||
PS1='[\u@\h \W]\$ '
|
||||
|
||||
EDITOR=/usr/bin/nano
|
||||
GIT_EDITOR=$EDITOR
|
||||
SUDO_EDITOR=$EDITOR
|
||||
#PATH=$PATH:/home/adam/bin
|
||||
export EDITOR=/usr/bin/nano
|
||||
export GIT_EDITOR=$EDITOR
|
||||
export SUDO_EDITOR=$EDITOR
|
||||
|
||||
# Aliases
|
||||
alias ll="ls -l"
|
||||
alias la="ls -la"
|
||||
alias se="sudoedit"
|
||||
alias ed=$EDITOR
|
||||
alias sc="sudo systemctl"
|
||||
alias screenshot="clear && screenfetch -s"
|
||||
|
|
5
.nanorc
5
.nanorc
|
@ -1,3 +1,8 @@
|
|||
#
|
||||
# ~/.nanorc
|
||||
# Author: Adam Gausmann
|
||||
#
|
||||
|
||||
## Use 4-space tabsize
|
||||
set tabsize 4
|
||||
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
#
|
||||
# ~/.tmux.conf
|
||||
# Author: Adam Gausmann
|
||||
#
|
||||
|
||||
set -g default-terminal "screen-256color"
|
||||
|
||||
set -g status-bg cyan
|
||||
|
|
Loading…
Add table
Reference in a new issue