Update configs

This commit is contained in:
2018-06-13 17:22:10 +03:00
parent 0c78a57821
commit f79ec9a1da
6 changed files with 13 additions and 8 deletions

View File

@@ -33,7 +33,7 @@ URxvt*keysym.C-F5: perl:urxvt-colors:
URxvt.keysym.M-Escape: perl:keyboard-select:activate URxvt.keysym.M-Escape: perl:keyboard-select:activate
URxvt.keysym.M-s: perl:keyboard-select:search URxvt.keysym.M-s: perl:keyboard-select:search
URxvt.url-select.launcher: chromium-browser URxvt.url-select.launcher: firefox
URxvt.url-select.underline: true URxvt.url-select.underline: true
URxvt.url-select.button: 1 URxvt.url-select.button: 1
URxvt.keysym.M-u: perl:url-select:select_next URxvt.keysym.M-u: perl:url-select:select_next

View File

@@ -6,7 +6,7 @@
# ---------------------------------------------------------------------- # ----------------------------------------------------------------------
auto-reload yes auto-reload yes
browser surf browser firefox
cleanup-on-quit yes cleanup-on-quit yes
# download-path "/home/moparx/downloads/podcasts" # download-path "/home/moparx/downloads/podcasts"
feed-sort-order title-dec feed-sort-order title-dec

View File

@@ -2,7 +2,7 @@ set nocompatible
filetype off filetype off
set rtp+=$HOME/.config/nvim/bundle/Vundle.vim set rtp+=$HOME/.config/nvim/bundle/Vundle.vim
call vundle#begin() call vundle#begin('$HOME/.config/nvim/bundle')
" let Vundle manage Vundle " let Vundle manage Vundle
" required! " required!

View File

@@ -1,7 +1,9 @@
#!/bin/sh #!/bin/sh
BROWSER=chromium export BROWSER=firefox
XTERM=urxvt export XTERM=urxvt
export LANGUAGE=en_US:en_GB:en
export LC_TIME=ru_RU.UTF-8
export QT_QPA_PLATFORMTHEME=qt5ct export QT_QPA_PLATFORMTHEME=qt5ct
unset QT_STYLE_OVERRIDE unset QT_STYLE_OVERRIDE

7
.zshrc
View File

@@ -1,4 +1,7 @@
# Добавляем ~/bin в PATH if [ -d $HOME/.local/bin ] ; then
PATH=$HOME/.local/bin:$PATH
fi
if [ -d $HOME/bin ] ; then if [ -d $HOME/bin ] ; then
PATH=$HOME/bin:$PATH PATH=$HOME/bin:$PATH
fi fi
@@ -128,9 +131,7 @@ esac
# shopt -s extglob; if [[ -z $DISPLAY ]] && ! pgrep X &>/dev/null; then tput setaf 3; tput bold; read -t 5 -p 'Start X? [Y/n] '; tput sgr0; [[ -z $REPLY || $REPLY = [Yy]?([Ee][Ss]) ]] && startx; fi # shopt -s extglob; if [[ -z $DISPLAY ]] && ! pgrep X &>/dev/null; then tput setaf 3; tput bold; read -t 5 -p 'Start X? [Y/n] '; tput sgr0; [[ -z $REPLY || $REPLY = [Yy]?([Ee][Ss]) ]] && startx; fi
export LANGUAGE="en_US:en_GB:en" export LANGUAGE="en_US:en_GB:en"
export PATH="$HOME/.dynamic-colors/bin:$PATH" export PATH="$HOME/.dynamic-colors/bin:$PATH"
source $HOME/.dynamic-colors/completions/dynamic-colors.zsh source $HOME/.dynamic-colors/completions/dynamic-colors.zsh
# Load all files from .shell/zshrc.d directory # Load all files from .shell/zshrc.d directory

2
.zshrc.d/locale.zsh Normal file
View File

@@ -0,0 +1,2 @@
export LANGUAGE=en_US:en_GB:en
export LC_TIME=ru_RU.UTF-8