diff options
| -rw-r--r-- | system/Xresources.symlink | 2 | ||||
| -rw-r--r-- | system/xsessionrc.symlink | 4 | ||||
| -rw-r--r-- | vim/vimrc.symlink | 32 | ||||
| -rw-r--r-- | xmonad.symlink/xmonad.hs | 2 | 
4 files changed, 22 insertions, 18 deletions
| diff --git a/system/Xresources.symlink b/system/Xresources.symlink index dc29b14..f7a671a 100644 --- a/system/Xresources.symlink +++ b/system/Xresources.symlink @@ -1,9 +1,11 @@  XTerm*faceName: DejaVu Sans Mono  XTerm*faceSize: 10  XTerm*selectToClipboard: true +XTerm*dynamicColors: on  UXTerm*faceName: DejaVu Sans Mono  UXTerm*faceSize: 10  UXTerm*selectToClipboard: true +UXTerm*dynamicColors: on  ! Solarized color scheme for the X Window System  ! diff --git a/system/xsessionrc.symlink b/system/xsessionrc.symlink index 4aab05e..d4df5f7 100644 --- a/system/xsessionrc.symlink +++ b/system/xsessionrc.symlink @@ -8,7 +8,7 @@ export DE='gnome'  nohup gnome-settings-daemon -r & >/dev/null  # Background image -if [ -f ~/.bg.jpg ]; then feh --bg-max ~/.bg.jpg &; fi +if [ -f ~/.bg.jpg ]; then feh --bg-max ~/.bg.jpg; fi  # GPG agent  envfile="$HOME/.gnupg/gpg-agent.env" @@ -20,6 +20,8 @@ fi  export GPG_AGENT_INFO  # the env file does not contain the export statement  export SSH_AUTH_SOCK   # enable gpg-agent for ssh +xrdb ~/.Xresources +  # WM  exec /etc/alternatives/x-window-manager diff --git a/vim/vimrc.symlink b/vim/vimrc.symlink index 27987ed..47115e6 100644 --- a/vim/vimrc.symlink +++ b/vim/vimrc.symlink @@ -42,8 +42,6 @@ set tabstop=4 shiftwidth=4 expandtab  set linebreak  set nu -let g:vimtex_latexmk_options = '-pdf -shell-escape'  -  filetype plugin indent on  syntax enable @@ -51,24 +49,26 @@ syntax enable  " See: http://vim.wikia.com/wiki/Accessing_the_system_clipboard  " Use :cz in visual mode to copy to clipboard, :pz for pasting  " x instead of z for primary selection, v for secondary selection -:command -range Cz :silent :<line1>,<line2>w !xsel -i -b -:command -range Cx :silent :<line1>,<line2>w !xsel -i -p -:command -range Cv :silent :<line1>,<line2>w !xsel -i -s -:cabbrev cv Cv -:cabbrev cz Cz -:cabbrev cx Cx +command -range Cz :silent :<line1>,<line2>w !xsel -i -b +command -range Cx :silent :<line1>,<line2>w !xsel -i -p +command -range Cv :silent :<line1>,<line2>w !xsel -i -s +cabbrev cv Cv +cabbrev cz Cz +cabbrev cx Cx -:command -range Pz :silent :r !xsel -o -b -:command -range Px :silent :r !xsel -o -p -:command -range Pv :silent :r !xsel -o -s +command -range Pz :silent :r !xsel -o -b +command -range Px :silent :r !xsel -o -p +command -range Pv :silent :r !xsel -o -s -:cabbrev pz Pz -:cabbrev px Px -:cabbrev pv Pv +cabbrev pz Pz +cabbrev px Px +cabbrev pv Pv  set background=light  colorscheme morning -:let g:vimtex_latexmk_file_line_error = 0 -:let g:tex_flavor='latex' +let g:vimtex_latexmk_options = '-pdf -shell-escape'  +let g:vimtex_latexmk_file_line_error = 0 + +let g:tex_flavor='latex' diff --git a/xmonad.symlink/xmonad.hs b/xmonad.symlink/xmonad.hs index 9185a7a..9d8542d 100644 --- a/xmonad.symlink/xmonad.hs +++ b/xmonad.symlink/xmonad.hs @@ -12,7 +12,7 @@ main = do              { modMask           = mod4Mask              , focusFollowsMouse = False              , layoutHook        = myLayouts -            , terminal          = "uxterm -bg \"#002b35\" -fg \"#f8f8f8\"" +            , terminal          = "uxterm"              }              `additionalKeysP` myKeys | 
