From 9c6f1f8f3f5b5e0a68bfd493df245aed1736faef Mon Sep 17 00:00:00 2001 From: Urbain Vaes Date: Wed, 25 Mar 2015 10:33:32 +0000 Subject: Some changes --- crontab | 1 + latexmkrc | 3 ++ mutt/cache/headers | Bin 642304 -> 741376 bytes mutt/colormutt | 2 +- tmux.conf | 1 + vim/after/ftplugin/tex/folding.vim | 68 ++++++++++++++++++------------------- vim/mySnippets/tex.snippets | 28 ++++++++------- vim/vimrc | 1 + zshrc | 2 +- 9 files changed, 58 insertions(+), 48 deletions(-) diff --git a/crontab b/crontab index e90313f..c74bd5f 100644 --- a/crontab +++ b/crontab @@ -1 +1,2 @@ */10 * * * * /usr/bin/offlineimap -u quiet +*/5 * * * * sh ~/.xmodmap diff --git a/latexmkrc b/latexmkrc index b466d7b..2ce33a9 100644 --- a/latexmkrc +++ b/latexmkrc @@ -1,2 +1,5 @@ $pdf_mode = 1; $pdf_previewer = 'zathura -s -x "vim --servername SYNCTEX --remote +%{line} %{input}" %O %S'; +$new_viewer_always [0]; +$clean_ext = "synctex.gz bbl pdf"; + diff --git a/mutt/cache/headers b/mutt/cache/headers index 76ae554..1134e74 100644 Binary files a/mutt/cache/headers and b/mutt/cache/headers differ diff --git a/mutt/colormutt b/mutt/colormutt index 51e9da1..d0e1225 100644 --- a/mutt/colormutt +++ b/mutt/colormutt @@ -3,7 +3,7 @@ h=`date +%H` if [ $h -lt 9 ]; then theme=dark -elif [ $h -lt 17 ]; then +elif [ $h -lt 18 ]; then theme=light else theme=dark diff --git a/tmux.conf b/tmux.conf index 439680e..c4388e6 100644 --- a/tmux.conf +++ b/tmux.conf @@ -1,3 +1,4 @@ set -g default-terminal "screen-256color" set -g mode-mouse on set -g mouse-resize-pane on +set -g mouse-select-pane on diff --git a/vim/after/ftplugin/tex/folding.vim b/vim/after/ftplugin/tex/folding.vim index 2e8b612..096c8a9 100644 --- a/vim/after/ftplugin/tex/folding.vim +++ b/vim/after/ftplugin/tex/folding.vim @@ -1,34 +1,34 @@ -function! TexFolds() - let thisline = getline(v:lnum) - if match(thisline,'^\\chapter') >= 0 - return ">1" - elseif match(thisline,'^\\section') >= 0 - return ">1" - elseif match(thisline,'^\\subsection') >=0 - return ">1" - elseif match(thisline,'^\\subsubsection') >=0 - return ">1" - else - return "=" - endif -endfunction - -function! TexFoldText() - let startline = getline(v:foldstart) - let title = substitute(startline,'^.*{\(.*\)}.*$','\1',"") - if match(startline,'^\\chapter') >= 0 - return '*' . title . '' - elseif match(startline,'^\\section') >= 0 - return ' # ' . title - elseif match(startline,'^\\subsection') >=0 - return ' ## ' . title - elseif match(startline,'^\\subsubsection') >=0 - return ' ### ' . title - else - echom "Error, fold not recognized" - endif -endfunction - -setlocal foldmethod=expr -setlocal foldexpr=TexFolds() -setlocal foldtext=TexFoldText() +" function! TexFolds() +" let thisline = getline(v:lnum) +" if match(thisline,'^\\chapter') >= 0 +" return ">1" +" elseif match(thisline,'^\\section') >= 0 +" return ">1" +" elseif match(thisline,'^\\subsection') >=0 +" return ">1" +" elseif match(thisline,'^\\subsubsection') >=0 +" return ">1" +" else +" return "=" +" endif +" endfunction +" +" function! TexFoldText() +" let startline = getline(v:foldstart) +" let title = substitute(startline,'^.*{\(.*\)}.*$','\1',"") +" if match(startline,'^\\chapter') >= 0 +" return '*' . title . '' +" elseif match(startline,'^\\section') >= 0 +" return ' # ' . title +" elseif match(startline,'^\\subsection') >=0 +" return ' ## ' . title +" elseif match(startline,'^\\subsubsection') >=0 +" return ' ### ' . title +" else +" echom "Error, fold not recognized" +" endif +" endfunction +" +" setlocal foldmethod=expr +" setlocal foldexpr=TexFolds() +" setlocal foldtext=TexFoldText() diff --git a/vim/mySnippets/tex.snippets b/vim/mySnippets/tex.snippets index b477512..000f288 100644 --- a/vim/mySnippets/tex.snippets +++ b/vim/mySnippets/tex.snippets @@ -11,7 +11,7 @@ snippet div "Divergence" i endsnippet snippet new "New command" b -\newcommand{$1}[$2] {$3} $0 +\newcommand{$1}[$2]{$3}$0 endsnippet snippet op "Operator style" i @@ -19,11 +19,11 @@ snippet op "Operator style" i endsnippet snippet pard "Partial derivative" i -\pard{$1}{$2} $0 +\pard{$1}{$2}$0 endsnippet snippet pardd "Double partial derivative" i -\pardd{$1}{$2} $0 +\pardd{$1}{$2}$0 endsnippet snippet herm "Hermite polynomials" i @@ -31,37 +31,41 @@ snippet herm "Hermite polynomials" i endsnippet snippet red "Red text" i -\red{$1} $0 +\red{$1}$0 endsnippet snippet sumi "Sum over index set" i -\sum_{${1:i} \in ${2:I}} $0 +\sum_{${1:i} \in ${2:I}}$0 endsnippet snippet ip "Inner product" i -\ip{$1}{$2} $0 +\ip{$1}{$2}$0 endsnippet snippet norm "Norm" i -\norm{$1} $0 +\norm{$1}$0 endsnippet snippet test "Test functions" i -\test{${1:\real^n}} $0 +\test{${1:\real^n}}$0 endsnippet snippet lp "Flat Lp space" i -\lp{${1:2}}{${2:\real^n}} $0 +\lp{${1:2}}{${2:\real^n}}$0 endsnippet snippet lpw "Weighted Lp space" i -\wlp{${1:2}}{${2:\real^n}}{${3: \rho}} $0 +\wlp{${1:2}}{${2:\real^n}}{${3:\rho}}$0 endsnippet snippet sob "Flat Sobolev space" i -\sobolev{${1:s}}{${2:\real^n}} $0 +\sobolev{${1:s}}{${2:\real^n}}$0 endsnippet snippet sobw "Weighted Sobolev space" i -\wsobolev{${1:s}}{${2:\real^n}}{${3:\rho}} $0 +\wsobolev{${1:s}}{${2:\real^n}}{${3:\rho}}$0 +endsnippet + +snippet cont "Continuous function" i +\cont{$1}{$2}$0 endsnippet diff --git a/vim/vimrc b/vim/vimrc index 1d396ff..1ef49d4 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -66,6 +66,7 @@ nnoremap i :Latexmk nnoremap e :LatexErrors nnoremap o :LatexView nnoremap k :LatexmkStop:LatexmkClean +nnoremap h :split header.sty " Gundo nnoremap :GundoToggle diff --git a/zshrc b/zshrc index 9d690eb..5e10a4d 100644 --- a/zshrc +++ b/zshrc @@ -49,7 +49,6 @@ alias cdd='cd ~/dotfiles' alias tmux="TERM=screen-256color-bce tmux" alias g='git' alias v=$EDITOR -alias tmux="TERM=screen-256color-bce tmux" alias g='git' alias v='vim' alias vs="vim --servername SYNCTEX" @@ -62,6 +61,7 @@ alias mail='offlineimap' alias ca='printf "\ec"' alias update='sudo apt-get update' alias upgrade='sudo apt-get upgrade' +alias install='sudo apt-get install' # Configuration alias ez='vim ~/.zshrc' -- cgit v1.2.3