This commit is contained in:
2017-10-27 15:34:27 -04:00
parent 97e0aaf7f7
commit a34451062b
4 changed files with 9 additions and 4 deletions

View File

@@ -21,6 +21,7 @@ alias rcg="cd ~/Documents/coding/random-color-generator"
alias lab="cd ~/258/258-labs-self" alias lab="cd ~/258/258-labs-self"
# config # config
alias lc="cd ~/linux-config"
alias vb="vi ~/.bash_aliases" alias vb="vi ~/.bash_aliases"
alias vv="vi ~/.vimrc" alias vv="vi ~/.vimrc"
alias rba=". ~/.bashrc" alias rba=". ~/.bashrc"
@@ -54,3 +55,4 @@ g(){
rs(){ rs(){
redshift -O $(($1 * 1000)) redshift -O $(($1 * 1000))
} }
alias rx="redshift -x"

View File

@@ -36,9 +36,9 @@ if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
fi fi
# set a fancy prompt (non-color, unless we know we "want" color) # set a fancy prompt (non-color, unless we know we "want" color)
case "$TERM" in # case "$TERM" in
xterm|xterm-color|*-256color) color_prompt=yes;; # xterm|xterm-color|*-256color) color_prompt=yes;;
esac # esac
# uncomment for a colored prompt, if the terminal has the capability; turned # uncomment for a colored prompt, if the terminal has the capability; turned
# off by default to not distract the user: the focus in a terminal window # off by default to not distract the user: the focus in a terminal window

View File

@@ -1,6 +1,6 @@
set relativenumber set relativenumber
set background=dark set background=dark
set t_Co=256 " set t_Co=256
syntax on syntax on
set tabstop=4 set tabstop=4
set shiftwidth=4 set shiftwidth=4
@@ -29,5 +29,6 @@ map <F3> :wa<CR>
map <F4> :wqa<CR> map <F4> :wqa<CR>
map <F5> :qa!<CR> map <F5> :qa!<CR>
map <F10> :PlugInstall<CR> map <F10> :PlugInstall<CR>
map <C-F1> :.,$s/:\(\w\)/: \1/g<CR>
" map <Enter> o<ESC> " map <Enter> o<ESC>
" map <S-Enter> O<ESC> " map <S-Enter> O<ESC>

View File

@@ -17,8 +17,10 @@
background_image = None background_image = None
copy_on_selection = True copy_on_selection = True
cursor_color = "#b9b9b9" cursor_color = "#b9b9b9"
custom_command = env TERM=xterm-256color bash
font = Noto Mono 10 font = Noto Mono 10
foreground_color = "#0077ff" foreground_color = "#0077ff"
palette = "#000000:#aa0000:#00aa00:#aa5500:#0000aa:#aa00aa:#00aaaa:#aaaaaa:#555555:#ff5555:#55ff55:#ffff55:#5555ff:#ff55ff:#55ffff:#ffffff" palette = "#000000:#aa0000:#00aa00:#aa5500:#0000aa:#aa00aa:#00aaaa:#aaaaaa:#555555:#ff5555:#55ff55:#ffff55:#5555ff:#ff55ff:#55ffff:#ffffff"
scrollbar_position = hidden scrollbar_position = hidden
use_custom_command = True
use_system_font = False use_system_font = False