From 34968443f7f8bcad32ece63149981c2cb2e6c80f Mon Sep 17 00:00:00 2001 From: Maximilian Friedersdorff Date: Wed, 14 Sep 2016 10:49:46 +0100 Subject: [PATCH] Try to recover most of existing dotfiles --- offline_mail/.mutt/mutt_with_mbsync.sh | 4 +-- tmux/.tmux.conf | 34 -------------------------- vim/.vimrc | 6 ++--- 3 files changed, 5 insertions(+), 39 deletions(-) diff --git a/offline_mail/.mutt/mutt_with_mbsync.sh b/offline_mail/.mutt/mutt_with_mbsync.sh index 90921c1..6741220 100755 --- a/offline_mail/.mutt/mutt_with_mbsync.sh +++ b/offline_mail/.mutt/mutt_with_mbsync.sh @@ -1,6 +1,6 @@ #!/bin/bash -PID="/var/run/user/1000/sync_mailboxes.pid" +PID="/home/max/.local/var/run/sync_mailboxes.pid" LOG="/home/max/.local/var/log/mutt_mbsync.log" touch $LOG @@ -35,6 +35,6 @@ sync_mailboxes_loop() sync_mailboxes_loop& >> $LOG 2>&1 echo $! > $PID -/usr/local/bin/mutt +/usr/bin/mutt clean_up diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf index 97849fe..a2103d5 100644 --- a/tmux/.tmux.conf +++ b/tmux/.tmux.conf @@ -1,42 +1,8 @@ set -g history-limit 10000 -set -g utf8 on -set-window-option -g utf8 on set -g default-command /bin/bash unbind C-b set -g prefix C-a bind C-a send-prefix - -# COLOUR (based on Solarized dark) - -# default statusbar colors -set-option -g status-bg black #base02 -set-option -g status-fg yellow #yellow -set-option -g status-attr default - -# default window title colors -set-window-option -g window-status-fg brightblue #base0 -set-window-option -g window-status-bg default -#set-window-option -g window-status-attr dim - -# active window title colors -set-window-option -g window-status-current-fg brightred #orange -set-window-option -g window-status-current-bg default -#set-window-option -g window-status-current-attr bright - -# pane border -set-option -g pane-border-fg black #base02 -set-option -g pane-active-border-fg brightgreen #base01 - -# message text -set-option -g message-bg black #base02 -set-option -g message-fg brightred #orange - -# pane number display -set-option -g display-panes-active-colour blue #blue -set-option -g display-panes-colour brightred #orange - -# clock -set-window-option -g clock-mode-colour green #green diff --git a/vim/.vimrc b/vim/.vimrc index a311a07..c346456 100644 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -29,7 +29,7 @@ Plugin 'ajh17/VimCompletesMe' Plugin 'hynek/vim-python-pep8-indent' Plugin 'vim-scripts/octave.vim--' Plugin 'vim-scripts/MatlabFilesEdition' -Plugin 'altercation/vim-colors-solarized' +Plugin 'flazz/vim-colorschemes' " All of your Plugins must be added before the following line call vundle#end() " required @@ -38,12 +38,11 @@ filetype plugin indent on " required " Random look and feel stuff syntax on set background=dark -colorscheme solarized +colorscheme molokai set expandtab set shiftwidth=2 set softtabstop=2 set number -set t_Co=16 let g:html_indent_inctags = "html,body,head,tbody" let g:indentLine_color_term = 200 @@ -84,6 +83,7 @@ let g:EditorConfig_exclude_patterns = ['fugitive://.*'] " latex-box let g:LatexBox_quickfix = 4 +let g:LatexBox_viewer = "mupdf" " clang fix let g:clang_user_options='|| exit0' -- 2.45.2