diff options
author | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2024-05-26 20:23:40 +0300 |
---|---|---|
committer | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2024-05-26 20:23:40 +0300 |
commit | 91631efe0b8bfc00f4022a33bd49420a9da789fc (patch) | |
tree | 6e339526547b69f121e1b4e76a9549a7e8837326 | |
parent | ceae010375308744bfe381ee2c8126dbcfefdf88 (diff) |
Changed statusbar for tmux and the path for dmenu to a shorter path.
Changes to be committed:
modified: dunst/dunstrc
new file: tmux/tmux.conf
-rw-r--r-- | dunst/dunstrc | 2 | ||||
-rw-r--r-- | tmux/tmux.conf | 60 |
2 files changed, 61 insertions, 1 deletions
diff --git a/dunst/dunstrc b/dunst/dunstrc index bf78393..51c30e8 100644 --- a/dunst/dunstrc +++ b/dunst/dunstrc @@ -191,7 +191,7 @@ ### Misc/Advanced ### # dmenu path. - dmenu = /home/alphara/.config/dmenu.conf -p dunst: + dmenu = ~/.config/dmenu.conf -p dunst: # Browser for opening urls in context menu. browser = /bin/firefox -new-tab diff --git a/tmux/tmux.conf b/tmux/tmux.conf new file mode 100644 index 0000000..e634a01 --- /dev/null +++ b/tmux/tmux.conf @@ -0,0 +1,60 @@ + +### TMUX CONFIGURATION FILE ### + +# status bar colors +set -g status-bg red +set -g status-fg black + +# tpm plugin manager +set -g @plugin 'tmux-plugins/tpm' +set -g @plugin 'tmux-plugins/tmux-sensible' +set -g @plugin 'tmux-plugins/tmux-yank' + +set -g @plugin 'christoomey/vim-tmux-navigator' + +run '~/.tmux/plugins/tpm/tpm' + +set -g mouse on + +#set-option -sa terminal-overrides ",xterm*:Tc" + +#unbind C-b +#set -g prefix C-Space +#bind C-Space send-prefix + +## Vim style pane selection +#bind h select-pane -L +#bind j select-pane -D +#bind k select-pane -U +#bind l select-pane -R + +## Start windows and panes at 1, not 0 +#set -g base-index 1 +#set -g pane-base-index 1 +#set-window-option -g pane-base-index 1 +#set-option -g renumber-windows on + +## Use Alt-arrow keys without prefix key to switch panes +#bind -n M-Left select-pane -L +#bind -n M-Right select-pane -R +#bind -n M-Up select-pane -U +#bind -n M-Down select-pane -D + +## Shift arrow to switch windows +#bind -n S-Left previous-window +#bind -n S-Right next-window + +## Shift Alt vim keys to switch windows +#bind -n M-H previous-window +#bind -n M-L next-window + +## set vi-mode +#set-window-option -g mode-keys vi + +## keybindings +#bind-key -T copy-mode-vi v send-keys -X begin-selection +#bind-key -T copy-mode-vi C-v send-keys -X rectangle-toggle +#bind-key -T copy-mode-vi y send-keys -X copy-selection-and-cancel + +#bind '"' split-window -v -c "#{pane_current_path}" +#bind % split-window -h -c "#{pane_current_path}" |