Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aVolpe committed Nov 30, 2015
1 parent f35a5c4 commit 909520a
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 32 deletions.
1 change: 0 additions & 1 deletion home.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,3 @@ nohup google-chrome 'http://inbox.google.com/' 'http://www.stackoverflow.com/' &
#yakuake-session -t 'WIKI' -q -e vim ~/.dropbox/Dropbox/wiki/index.wiki
#yakuake-session -t 'CenterIM' -q -e centerim5
rm ~/.last_dir
nohup programs/keynav/keynav &
23 changes: 6 additions & 17 deletions start.sh
Original file line number Diff line number Diff line change
@@ -1,25 +1,20 @@
#!/bin/bash

#sleep 5
#conky -c ~/.conky/V2/conkyrc &

cd ~

day=`date +%a`
hour=`date +%H`
#echo $day
#echo $hour

rm ~/.last_login

function home() {
echo "Home";
sh ~/scripts/home.sh > ~/.last_login;
sh ~/.scripts/home.sh > ~/.last_login;
}

function place1() {
echo "Facultad";
sh ~/scripts/facu.sh > ~/.last_login;
sh ~/.scripts/facu.sh > ~/.last_login;
}

function not_weekend () {
Expand All @@ -31,18 +26,12 @@ function not_weekend () {
esac
}

#case $day in
#S*)
#home;;
#*)
#not_weekend;;
#esac

home
#sleep 3
#feh --bg-scale /usr/share/wallpapers/openSUSEdefault/contents/images/1920x1080.jpg

xrandr --output VGA-1-2 --off
xrandr --output VGA-1-1 --off

nohup /opt/custom/programs/keynav/keynav &
rm /tmp/relax_*
sudo mount /dev/sdb1 /home/avolpe/datos3
echo "Montando datos"
sudo mount /dev/sdb1 /home/avolpe/datos
26 changes: 14 additions & 12 deletions vim/.vimrc.local
Original file line number Diff line number Diff line change
Expand Up @@ -156,11 +156,11 @@ set spelllang=es,en
nnoremap K i<CR><Esc>
map <leader>dt :%s/\s\+$//g<CR>:w<CR>

" Navegación {{
" Navegación {
imap jj <Esc><Esc><Esc>
imap jw <Esc>:w<CR>a
imap jk <Esc>:w<CR>
" }}
" }
" Resize options {
nnoremap <silent> <Leader>eh :exe "resize " . (winheight(0) * 3/2)<CR>
nnoremap <silent> <Leader>rh :exe "resize " . (winheight(0) * 2/3)<CR>
Expand Down Expand Up @@ -203,16 +203,6 @@ augroup END
au FileType xml setlocal equalprg=xmllint\ --format\ --recover\ -\ 2>/dev/null
let g:indent_guides_enable_on_vim_startup = 0

" Colorscheme {
colorscheme hybrid
set background=dark
hi clear SpellBad
hi SpellBad cterm=underline,bold ctermfg=red
" Transparent background
hi Normal ctermbg=none
" Match pairing http://stackoverflow.com/questions/10746750/set-vim-bracket-highlighting-colors
hi MatchParen cterm=bold ctermbg=none ctermfg=magenta
" }
" Per file config {

" GIT {
Expand All @@ -235,6 +225,7 @@ augroup VimwikiAutowrite
au FileType vimwiki set nowritebackup
au FileType vimwiki set noswapfile
au FileType vimwiki set autowrite
au FileType vimwiki syntax on
au FocusLost *.wiki :w
au FileType vimwiki set autowrite
augroup END
Expand Down Expand Up @@ -394,4 +385,15 @@ let g:spf13_no_omni_complete = 0
imap <Esc> <Esc><Esc><Esc>
" }

" Colorscheme {
colorscheme hybrid
set background=dark
hi clear SpellBad
hi SpellBad cterm=underline,bold ctermfg=red
" Transparent background
hi Normal ctermbg=none
" Match pairing http://stackoverflow.com/questions/10746750/set-vim-bracket-highlighting-colors
hi MatchParen cterm=bold ctermbg=none ctermfg=magenta
syntax on
set cursorline
" }
7 changes: 7 additions & 0 deletions vim/.vrapperrc
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,10 @@ map <SPACE>rf :fullPublish<CR>
eclipseaction toggle org.eclipse.debug.ui.commands.ToggleBreakpoint
nmap <SPACE>dt :toggle
" }
" Plugins {
" Cambio de Tab {
nnoremap gt <C-W>gt
nnoremap gT <C-W>gT
"}
"}

7 changes: 5 additions & 2 deletions zsh/.zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,13 @@ LS_COLORS="$LS_COLORS:di=1;92:ln=4:tw=4;35:ow=1;35:" ; export LS_COLORS
#fi
#fi

PATH="~/.gem/ruby/2.1.0/bin:$PATH"
PATH=$PATH:/usr/local/bin/
if which ruby >/dev/null && which gem >/dev/null; then
PATH="$(ruby -rubygems -e 'puts Gem.user_dir')/bin:$PATH"
fi

setopt correct_all
source ~/scripts/zsh/completition/tmuxinator.zsh
#source ~/.scripts/zsh/completition/tmuxinator.zsh
#source ~/.zsh_prompt.sh
#
bindkey "^Q" push-input
Expand Down

0 comments on commit 909520a

Please sign in to comment.