diff options
-rw-r--r-- | .i3/config | 6 | ||||
-rw-r--r-- | .mutt/muttrc | 9 | ||||
-rw-r--r-- | .notes/Notes | 3 | ||||
-rw-r--r-- | .uzbl/bookmarks | 3 | ||||
-rw-r--r-- | .vim/mySnippets/tex.snippets | 9 | ||||
-rw-r--r-- | .vim/vimrc | 6 | ||||
-rw-r--r-- | .zsh/tmp | 2 | ||||
-rwxr-xr-x | bin/xopen | 9 |
8 files changed, 28 insertions, 19 deletions
@@ -6,7 +6,7 @@ set $w5 5|work set $w6 6|fun set $w7 7|fun set $w8 8|work -set $w9 9|todo +set $w9 9|work set $w10 10|conf # This file has been auto-generated by i3-config-wizard(1). @@ -180,7 +180,7 @@ bindsym $mod+b exec uzbl-browser bindsym $mod+at exec chromium-browser # Configuration -bindsym F1 exec $HOME/.xinitrc +# bindsym F1 exec $HOME/.xinitrc # Font # font xft:Droid Sans Mono 10 @@ -202,4 +202,4 @@ bindsym XF86MonBrightnessDown exec xbacklight -dec 10 # font pango:DejaVu Sans Mono 10 -bindsym F2 exec --no-startup-id feh --bg-fill --randomize /usr/share/backgrounds +bindsym F1 exec --no-startup-id feh --bg-fill --randomize /usr/share/backgrounds diff --git a/.mutt/muttrc b/.mutt/muttrc index 20a7aa1..f1df0de 100644 --- a/.mutt/muttrc +++ b/.mutt/muttrc @@ -5,6 +5,15 @@ set use_from = yes set envelope_from = "yes" set weed +# Encryption +source /usr/share/doc/mutt-kz/samples/gpg.rc +set pgp_use_gpg_agent = yes +set pgp_sign_as = 08AC6A48 +set pgp_timeout = 3600 +set crypt_autosign = no +set crypt_replyencrypt = yes +set fcc_clear = yes + # Folders set folder = ~/.mail set alias_file = ~/.mutt/alias diff --git a/.notes/Notes b/.notes/Notes index 4c4dc43..6c65166 100644 --- a/.notes/Notes +++ b/.notes/Notes @@ -14,9 +14,10 @@ Notes # General Todos • High priority + ◦ Email to agency • Medium priority ◦ Book ticket to Paris - ◦ Message Pierre, Hidayet, Greg, Alex + ◦ Message Hidayet, Greg, Alex, Francesc • Low priority * * * diff --git a/.uzbl/bookmarks b/.uzbl/bookmarks index c54103e..ee5b65f 100644 --- a/.uzbl/bookmarks +++ b/.uzbl/bookmarks @@ -2,3 +2,6 @@ https://github.com/ Github http://bknguyen.be/ Khoi https://www.youtube.com/ Youtube http://www.economist.com/ Economist +http://scholar.google.co.uk/ Scholar +https://www.linkedin.com/profile/view?id=AAIAABBkh-EB6quFF-ih36lPoOTg8229XdlkmtI&trk=nav_responsive_tab_profile LinkedIn +https://www.warlight.net/ Warlight diff --git a/.vim/mySnippets/tex.snippets b/.vim/mySnippets/tex.snippets index d9b37b5..21803cb 100644 --- a/.vim/mySnippets/tex.snippets +++ b/.vim/mySnippets/tex.snippets @@ -106,16 +106,9 @@ snippet frame "My frame snippet" b endsnippet snippet gauss "Gaussian density" w -\gaussian{${1:\mu}}{${2:\Sigma}}$0 +\gaussian[${1:\mu}][${2:\Sigma}]$0 endsnippet snippet poly "Polynomials" w \poly{${1:d}} endsnippet - -snippet item "Itemize" b -\begin{itemize} - \item $1 -\end{itemize} -$0 -endsnippet @@ -75,12 +75,6 @@ let g:airline_theme='solarized' let g:airline#extensions#tabline#enabled = 0 let g:airline_exclude_preview = 0 -let g:bufferline_active_buffer_left = '' -let g:bufferline_active_buffer_right = '' -let g:bufferline_echo = 0 -let g:bufferline_modified = '+' -let g:bufferline_rotate = 0 - let g:ctrlp_by_filename = 1 let g:ctrlp_cmd = 'CtrlP' let g:ctrlp_map = '<c-p>' @@ -1,3 +1,3 @@ #!/bin/zsh -export COLORSCHEME=light +export COLORSCHEME=seoul diff --git a/bin/xopen b/bin/xopen new file mode 100755 index 0000000..a133a47 --- /dev/null +++ b/bin/xopen @@ -0,0 +1,9 @@ +#!/usr/bin/bash +cd ~ +PDF=$(locate "$HOME/*.pdf") +DJVU=$(locate "$HOME/*.djvu") +RESULTS="$PDF +$DJVU" +TARGET=$(echo "${RESULTS//"$HOME/"/}" | dmenu -i -p "Open File:" | tr -d '[[:space:]]') +[[ -n $TARGET ]] || exit +xdg-open "$TARGET" & |