Skip to content

Commit

Permalink
Update bashrc, xresources, alacritty, neovim and qtile.
Browse files Browse the repository at this point in the history
  • Loading branch information
brunomontezano committed Jan 29, 2022
1 parent c8f20c1 commit b2096a0
Show file tree
Hide file tree
Showing 9 changed files with 158 additions and 622 deletions.
9 changes: 8 additions & 1 deletion .bashrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,21 @@ source /home/pepper/.config/broot/launcher/bash/br

### Exports and variables ###
export EDITOR="nvim"
export TERM="st-256color"
export TERM="alacritty"
export BROWSER="firefox"
export MANPAGER="less"
export PAGER="less"
export XINITRC="$XDG_CONFIG_HOME"/X11/xinitrc
export XAUTHORITY="$XDG_RUNTIME_DIR"/Xauthority
export DIFFPROG="nvim -d $1"
export GTK2_RC_FILES="$XDG_CONFIG_HOME"/gtk-2.0/gtkrc
export LESSHISTFILE="-"
export R_ENVIRON_USER="$XDG_CONFIG_HOME"/r/.Renviron
export _JAVA_OPTIONS=-Djava.util.prefs.userRoot="$XDG_CONFIG_HOME"/java
export PYTHONSTARTUP="$XDG_CONFIG_HOME"/python/pythonrc
export NODE_REPL_HISTORY="$XDG_DATA_HOME"/node_repl_history
export SQLITE_HISTORY=$XDG_DATA_HOME/sqlite_history
export TEXMFVAR=$XDG_CACHE_HOME/texlive/texmf-var
export LESS_TERMCAP_mb=$'\e[1;32m'
export LESS_TERMCAP_md=$'\e[1;32m'
export LESS_TERMCAP_me=$'\e[0m'
Expand Down Expand Up @@ -71,6 +76,8 @@ ex ()
}

### Aliases ###
alias startx='startx "$XDG_CONFIG_HOME/X11/xinitrc"'

alias ls='exa --color=always --group-directories-first' # Normal listing
alias la='exa -la --color=always --group-directories-first' # All files and dirs (long format)
alias ll='exa -l --color=always --group-directories-first' # Long format
Expand Down
1 change: 1 addition & 0 deletions .config/X11/xinitrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
exec qtile start
70 changes: 34 additions & 36 deletions .config/X11/xresources
Original file line number Diff line number Diff line change
@@ -1,36 +1,34 @@
! -----------------------------------------------------------------------------
! File: gruvbox-dark.xresources
! Description: Retro groove colorscheme generalized
! Author: morhetz <[email protected]>
! Source: https://github.com/morhetz/gruvbox-generalized
! Last Modified: 6 Sep 2014
! -----------------------------------------------------------------------------

! hard contrast: *background: #1d2021
*background: #282828
! soft contrast: *background: #32302f
*foreground: #ebdbb2
! Black + DarkGrey
*color0: #282828
*color8: #928374
! DarkRed + Red
*color1: #cc241d
*color9: #fb4934
! DarkGreen + Green
*color2: #98971a
*color10: #b8bb26
! DarkYellow + Yellow
*color3: #d79921
*color11: #fabd2f
! DarkBlue + Blue
*color4: #458588
*color12: #83a598
! DarkMagenta + Magenta
*color5: #b16286
*color13: #d3869b
! DarkCyan + Cyan
*color6: #689d6a
*color14: #8ec07c
! LightGrey + White
*color7: #a89984
*color15: #ebdbb2
*background: #1E1E2E
*foreground: #D9E0EE

! Gray
*color0: #6E6C7E
*color8: #988BA2

! Red
*color1: #F28FAD
*color9: #F28FAD

! Green
*color2: #ABE9B3
*color10: #ABE9B3

! Yellow
*color3: #FAE3B0
*color11: #FAE3B0

! Blue
*color4: #96CDFB
*color12: #96CDFB

! Maguve
*color5: #DDB6F2
*color13: #DDB6F2

! Pink
*color6: #F5C2E7
*color14: #F5C2E7

! Whites
*color7: #C3BAC6
*color15: #D9E0EE
Loading

0 comments on commit b2096a0

Please sign in to comment.