Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
100 changes: 0 additions & 100 deletions .config/nvim/init.vim

This file was deleted.

13 changes: 13 additions & 0 deletions .fzf.zsh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Setup fzf
# ---------
if [[ ! "$PATH" == */home/${USER}/.fzf/bin* ]]; then
export PATH="${PATH:+${PATH}:}/home/${USER}/.fzf/bin"
fi

# Auto-completion
# ---------------
[[ $- == *i* ]] && source "/home/${USER}/.fzf/shell/completion.zsh" 2> /dev/null

# Key bindings
# ------------
source "/home/${USER}/.fzf/shell/key-bindings.zsh"
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
*

12 changes: 12 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[submodule "fzf"]
path = fzf
url = https://github.com/junegunn/fzf.git
[submodule "powerlevel10k"]
path = powerlevel10k
url = https://github.com/romkatv/powerlevel10k.git
[submodule ".zsh/zsh-syntax-highlighting"]
path = .zsh/zsh-syntax-highlighting
url = https://github.com/zsh-users/zsh-syntax-highlighting.git
[submodule ".zsh/zsh-autosuggestions"]
path = .zsh/zsh-autosuggestions
url = https://github.com/zsh-users/zsh-autosuggestions.git
53 changes: 53 additions & 0 deletions .mydot
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
set -g mouse on

set -g prefix C-Space
bind Space send-prefix

bind-key v split-window -h -l 90 -c '#{pane_current_path}'
bind-key s split-window -v -l 20 -c '#{pane_current_path}'
bind-key V split-window -h -c '#{pane_current_path}'
bind-key S split-window -v -c '#{pane_current_path}'
bind-key c new-window -c "#{pane_current_path}"

bind -n S-Left select-pane -L
bind -n S-Right select-pane -R
bind -n S-Up select-pane -U
bind -n S-Down select-pane -D

bind-key -T copy-mode-vi v send-keys -X begin-selection
bind-key -T copy-mode-vi Escape send-keys -X cancel
bind-key -T copy-mode-vi y send-keys -X copy-pipe-and-cancel "win32yank.exe -i"
bind-key -T copy-mode-vi Enter send-keys -X copy-pipe-and-cancel "win32yank.exe -i"
bind-key -T copy-mode-vi MouseDragEnd1Pane send-keys -X copy-pipe-and-cancel "win32yank.exe -i"

unbind-key -T prefix p
bind-key p run "win32yank.exe -o | tmux load-buffer - && tmux paste-buffer"
bind-key ] run "win32yank.exe -o | tmux load-buffer - && tmux paste-buffer"

bind -n M-H resize-pane -L 5
bind -n M-J resize-pane -D 5
bind -n M-K resize-pane -U 5
bind -n M-L resize-pane -R 5

bind -n M-Left previous-window
bind -n M-Right next-window

bind -n C-S-Right switchc -n
bind -n C-S-Left switchc -p
bind -n C-S-F2 new-session

bind-key r source-file ~/.tmux.conf

set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'christoomey/vim-tmux-navigator'
set -g @plugin 'laktak/extrakto'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-yank'

run-shell 'powerline-config tmux setup'

run '~/.tmux/plugins/tpm/tpm'

set-option -g default-terminal "screen-256color"

set -sg escape-time 10
207 changes: 0 additions & 207 deletions .nvimrc

This file was deleted.

Loading