some changes (should use git more often)
This commit is contained in:
parent
f941c4879f
commit
7d5dabfb88
33
home/.tmux.conf
Normal file
33
home/.tmux.conf
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
# screen behaviour
|
||||||
|
unbind C-b
|
||||||
|
set -g prefix C-a
|
||||||
|
unbind C-a
|
||||||
|
bind C-a send-prefix
|
||||||
|
|
||||||
|
# config reload
|
||||||
|
unbind r
|
||||||
|
bind r source-file ~/.tmux.conf
|
||||||
|
|
||||||
|
# more ergonomic splitting
|
||||||
|
unbind |
|
||||||
|
bind | split-window -h
|
||||||
|
|
||||||
|
unbind -
|
||||||
|
bind - split-window -v
|
||||||
|
|
||||||
|
# vim bindings in copy mode
|
||||||
|
bind-key -T copy-mode-vi v send -X begin-selection
|
||||||
|
bind-key -T copy-mode-vi y send -X copy-selection
|
||||||
|
bind-key -T copy-mode-vi p send -X paste-buffer
|
||||||
|
|
||||||
|
# enable mouse
|
||||||
|
set -g mouse on
|
||||||
|
|
||||||
|
# plugins
|
||||||
|
set -g @plugin 'tmux-plugins/tpm'
|
||||||
|
|
||||||
|
## solarized colors
|
||||||
|
set -g @plugin 'seebi/tmux-colors-solarized'
|
||||||
|
set -g @colors-solarized 'dark'
|
||||||
|
|
||||||
|
run '~/.tmux/plugins/tpm/tpm'
|
|
@ -23,7 +23,7 @@ autocmd Filetype openscad setlocal ts=2 sw=2 sts=2 expandtab
|
||||||
autocmd Filetype php setlocal ts=2 sw=2 sts=2 expandtab
|
autocmd Filetype php setlocal ts=2 sw=2 sts=2 expandtab
|
||||||
autocmd Filetype python setlocal ts=4 sw=4 sts=4 expandtab
|
autocmd Filetype python setlocal ts=4 sw=4 sts=4 expandtab
|
||||||
autocmd Filetype scss setlocal ts=2 sw=2 sts=2 expandtab
|
autocmd Filetype scss setlocal ts=2 sw=2 sts=2 expandtab
|
||||||
autocmd Filetype shell setlocal ts=4 sw=4 sts=4 expandtab
|
autocmd Filetype sh setlocal ts=4 sw=4 sts=4 expandtab
|
||||||
autocmd Filetype svg setlocal ts=2 sw=2 sts=2 expandtab
|
autocmd Filetype svg setlocal ts=2 sw=2 sts=2 expandtab
|
||||||
autocmd Filetype tex setlocal ts=2 sw=2 sts=2 expandtab
|
autocmd Filetype tex setlocal ts=2 sw=2 sts=2 expandtab
|
||||||
autocmd Filetype toml setlocal ts=4 sw=4 sts=4 expandtab
|
autocmd Filetype toml setlocal ts=4 sw=4 sts=4 expandtab
|
||||||
|
|
|
@ -42,10 +42,11 @@ function vobsub2srt() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function aucdtect() {
|
function aucdtect() {
|
||||||
docker run --rm \
|
docker run \
|
||||||
|
--rm \
|
||||||
-v "$PWD:/home/aucdtect/:ro" \
|
-v "$PWD:/home/aucdtect/:ro" \
|
||||||
-e uid=$(id -u) \
|
-e uid=$(id -u) \
|
||||||
-e gid=$(id -g) \
|
-e gid=$(id -g) \
|
||||||
aucdtect \
|
sbruder/aucdtect \
|
||||||
$@
|
$@
|
||||||
}
|
}
|
||||||
|
|
|
@ -103,7 +103,7 @@ function ränder() {
|
||||||
"office")
|
"office")
|
||||||
xrandr \
|
xrandr \
|
||||||
--output VGA-1 --off \
|
--output VGA-1 --off \
|
||||||
--output LVDS-1 --primary --mode 1280x800 --pos 0x721 --rotate normal \
|
--output LVDS-1 --primary --mode 1280x800 --pos 0x720 --rotate normal \
|
||||||
--output HDMI-3 --mode 1920x1200 --pos 1280x0 --rotate normal \
|
--output HDMI-3 --mode 1920x1200 --pos 1280x0 --rotate normal \
|
||||||
--output HDMI-2 --off \
|
--output HDMI-2 --off \
|
||||||
--output HDMI-1 --off \
|
--output HDMI-1 --off \
|
||||||
|
@ -111,6 +111,17 @@ function ränder() {
|
||||||
--output DP-2 --off \
|
--output DP-2 --off \
|
||||||
--output DP-1 --off
|
--output DP-1 --off
|
||||||
;;
|
;;
|
||||||
|
"officealt")
|
||||||
|
xrandr \
|
||||||
|
--output VGA-1 --off \
|
||||||
|
--output LVDS-1 --primary --mode 1280x800 --pos 0x1000 --rotate normal \
|
||||||
|
--output HDMI-3 --mode 1920x1200 --pos 1280x0 --rotate left \
|
||||||
|
--output HDMI-2 --off \
|
||||||
|
--output HDMI-1 --off \
|
||||||
|
--output DP-3 --off \
|
||||||
|
--output DP-2 --off \
|
||||||
|
--output DP-1 --off
|
||||||
|
;;
|
||||||
"solo")
|
"solo")
|
||||||
xrandr \
|
xrandr \
|
||||||
--output VGA-1 --off \
|
--output VGA-1 --off \
|
||||||
|
@ -146,6 +157,7 @@ alias mpvhdr="mpv --tone-mapping=hable"
|
||||||
alias rls="/bin/ls --color=auto"
|
alias rls="/bin/ls --color=auto"
|
||||||
alias exa="exa --git"
|
alias exa="exa --git"
|
||||||
alias ls="exa"
|
alias ls="exa"
|
||||||
|
alias presirandr="arandr; feh --bg-fill bg.jpg"
|
||||||
|
|
||||||
## Environment variables
|
## Environment variables
|
||||||
export HVSC_BASE="$HOME/Dokumente/sound/HVSC/"
|
export HVSC_BASE="$HOME/Dokumente/sound/HVSC/"
|
||||||
|
@ -163,6 +175,12 @@ function drone-add-registry() {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function drone-add-netlify() {
|
||||||
|
(
|
||||||
|
drone secret add --name netlify_key --value "$(pass show devops/netlify |grep Drone-Key|cut -d: -f2|tr -d ' ')" "$1"
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
function drone() {
|
function drone() {
|
||||||
(
|
(
|
||||||
source ~/.drone-env
|
source ~/.drone-env
|
||||||
|
|
Reference in a new issue