]> git.friedersdorff.com Git - max/dotfiles.git/commitdiff
Try to recover most of existing dotfiles
authorMaximilian Friedersdorff <maxf130@gmail.com>
Wed, 14 Sep 2016 09:49:46 +0000 (10:49 +0100)
committerMaximilian Friedersdorff <maxf130@gmail.com>
Wed, 14 Sep 2016 09:49:46 +0000 (10:49 +0100)
offline_mail/.mutt/mutt_with_mbsync.sh
tmux/.tmux.conf
vim/.vimrc

index 90921c1964be207b9a6ee36ea58a419201daa8cd..67412204e837bdc3aaf24bf6462abe9cde255ac0 100755 (executable)
@@ -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
index 97849fecad45ff14b733db6ea807bc6a9a4c2968..a2103d5df3f7bc58fa9f1d32f9751b9a7567114f 100644 (file)
@@ -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
index a311a0788cd18e3a6d2267c27a7892cac9781c2d..c3464567bf357863c6b8f91ffad2d476375c1aa5 100644 (file)
@@ -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'