Weeks worth of tweaks

This commit is contained in:
Ian Keane 2020-02-22 17:55:45 -05:00
parent 97c89facd0
commit babcc9e44b
8 changed files with 37 additions and 14 deletions

View file

@ -1,15 +1,6 @@
<<<<<<< HEAD
=======
#
# ~/.bash_profile
#
# Get the aliases and functions
[ -f $HOME/.bashrc ] && . $HOME/.bashrc
[[ -f ~/.bashrc ]] && . ~/.bashrc
export XDG_CONFIG_HOME="$HOME/.config"
#export DISPLAY=:0
export BROWSER=firefox
export EDITOR=vim
export TERM=screen-256color
>>>>>>> 05f5a5326ea758311bda4cc4225cd0ce265b8ec0

View file

@ -15,7 +15,7 @@ max_output_buffer_size "16384"
audio_output {
type "alsa"
name "alsa for audio soundcard"
mixer_type "software"
# mixer_type "software"
}
audio_output {
@ -24,3 +24,17 @@ name "toggle_visualizer"
path "/tmp/mpd.fifo"
format "44100:16:2"
}
audio_output {
type "pulse"
name "PulseAudio Output"
#server "localhost" # optional
#sink "alsa_output" # optional
}
audio_output {
type "alsa"
name "MPD"
device "pulse"
mixer_control "Master"
}

View file

@ -30,7 +30,7 @@ color listfocus_unread yellow default bold
color info red black bold
color article cyan default
browser linkhandler
# browser linkhandler
macro , open-in-browser
macro t set browser "tsp youtube-dl --add-metadata -ic"; open-in-browser ; set browser linkhandler
macro a set browser "tsp youtube-dl --add-metadata -xic -f bestaudio/best"; open-in-browser ; set browser linkhandler

View file

@ -1,5 +1,6 @@
let g:netrw_dirhistmax =10
let g:netrw_dirhistcnt =3
let g:netrw_dirhistcnt =4
let g:netrw_dirhist_4='/home/green/.newsboat'
let g:netrw_dirhist_3='/home/green/.config/sxhkd'
let g:netrw_dirhist_2='/home/green/.newsboat'
let g:netrw_dirhist_1='/home/green/.config/sxhkd'

View file

@ -33,6 +33,10 @@
Plug 'ap/vim-css-color'
Plug 'dylanaraps/wal.vim'
Plug 'sjl/tslime.vim'
" TODO setup
Plug 'roxma/vim-tmux-clipboard'
" TODO setup
Plug 'melonmanchan/vim-tmux-resizer'
" Todo:
" GV
@ -55,7 +59,7 @@
" appearance {{{
colorscheme zenburn
" colorscheme zenburn
" colorscheme wal
syntax on " Enable syntax
set encoding=utf-8 " Keep utf-8 encoding

View file

@ -41,7 +41,7 @@
!URxvt.font: xft:BitstreamVeraSansMono:antialias=true:pixelsize=14
URxvt.font: xft:DejaVu Sans Mono:pixelsize=14, xft:symbola:pixelsize=14
URxvt.font: xft:DejaVu Sans Mono:pixelsize=14, xft:symbola:pixelsize=14, xft:Kochi Gothic:antialias=false
URxvt.letterSpace: 0
URxvt.lineSpace: 0
URxvt.geometry: 92x24

View file

@ -4,6 +4,7 @@ xrdb .Xresources &
feh --bg-fill ~/Documents/Pictures/Wallpapers/winfuck.jpg &
#exec i3
mpd &
pulseaudio &
setxkbmap -option caps:ctrl_modifier &
i3status | dzen2 -ta r -y 1062 -dock -fn xft:BitstreamVeraSansMono:pixelsize=14 &
exec bspwm

View file

@ -71,3 +71,15 @@ bindkey -s '^o' 'lfcd\n' # zsh
# Load zsh-syntax-highlighting; should be last.
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh 2>/dev/null
# man page colors
man() {
LESS_TERMCAP_md=$'\e[01;31m' \
LESS_TERMCAP_me=$'\e[0m' \
LESS_TERMCAP_se=$'\e[0m' \
LESS_TERMCAP_so=$'\e[01;44;33m' \
LESS_TERMCAP_ue=$'\e[0m' \
LESS_TERMCAP_us=$'\e[01;32m' \
command man "$@"
}