panther
J. Fernando Sánchez 8 years ago
parent e68ff6e85e
commit 59483a7ac8

@ -403,6 +403,17 @@
)
)
(use-package markdown-mode
:init
:config (progn
)
)
(use-package go-mode
:init
:config (progn
)
)
;;; Global emacs settings
;; disable splash screen
(setq inhibit-splash-screen t)

@ -63,6 +63,7 @@ bindsym Mod1+F6 exec --no-startup-id monitors single HDMI
bindsym Mod1+F7 exec --no-startup-id monitors dual mirror
bindsym Mod1+F8 exec --no-startup-id monitors dual home
bindsym Mod1+F9 exec --no-startup-id monitors dual
bindsym Mod1+F10 exec --no-startup-id xrandr --auto
# Move to displays
bindsym $mod+Mod1+j move workspace to output down
@ -277,11 +278,11 @@ exec --no-startup-id volti
exec --no-startup-id clipit
exec --no-startup-id syndaemon -i 0.5 -d
exec --no-startup-id synapse -s
exec --no-startup-id xautolock -time 10 -corners "----" -locker 'dm-tool lock'
exec --no-startup-id xautolock -time 10 -corners "----" -locker 'i3lock -t -c 000000 -i ~/Images/fightclub.jpg'
#exec xautolock -time 10 -corners "----" -locker 'i3lock -t -c 000000 -i ~/Pictures/Wallpapers/Game\ Over\ Hacker.png' &
#exec --no-startup-id xautolock -corners '----' -time 10 -locker 'dm-tool lock' # lightdm
exec --no-startup-id nemo --no-desktop
exec --no-startup-id termite -name tmux -e tmux attach
exec --no-startup-id termite --title tmux -e tmux attach
set $mode_system System (l) lock, (e) logout, (s) suspend, (h) hibernate, (r) reboot, (Shift+s) shutdown
mode "$mode_system" {

@ -65,9 +65,9 @@ set -g terminal-overrides 'xterm*:smcup@:rmcup@'
##CLIPBOARD selection integration
##Requires prefix key before the command key
#Copy tmux paste buffer to CLIPBOARD
bind C-c run "tmux show-buffer | xclip -i -selection clipboard"
bind C-c run -b "tmux show-buffer | xclip -i -selection clipboard"
#Copy CLIPBOARD to tmux paste buffer and paste tmux paste buffer
bind C-v run "tmux set-buffer -- \"$(xclip -o -selection clipboard)\"; tmux paste-buffer"
bind C-v run -b "tmux set-buffer -- \"$(xclip -o -selection clipboard)\"; tmux paste-buffer"
# set vi keys
setw -g mode-keys vi

@ -37,8 +37,8 @@ zstyle ':prezto:load' pmodule \
'fasd' \
'pacman' \
'git' \
'ssh' \
'syntax-highlighting' \
'ssh' \
'prompt'
@ -166,10 +166,10 @@ zstyle ':prezto:module:terminal' auto-title 'yes'
#
# Auto start a session when Zsh is launched in a local terminal.
# zstyle ':prezto:module:tmux:auto-start' local 'yes'
#zstyle ':prezto:module:tmux:auto-start' local 'yes'
# Auto start a session when Zsh is launched in a SSH connection.
zstyle ':prezto:module:tmux:auto-start' remote 'yes'
#zstyle ':prezto:module:tmux:auto-start' remote 'yes'
# Integrate with iTerm2.
# zstyle ':prezto:module:tmux:iterm' integrate 'yes'

@ -103,3 +103,8 @@ function newdev () {
alias gsicluster='ssh balkian@shannon.gsi.dit.upm.es -p 1337'
TMPPREFIX="${TMPDIR%/}/zsh"
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
pyenv virtualenvwrapper

@ -13,3 +13,7 @@ fi
# Customize to your needs...
eval $(dircolors ~/.dircolors)
if which pyenv >/dev/null ; then
eval "$(pyenv virtualenv-init -)"
fi

Loading…
Cancel
Save