Skip to content

Commit

Permalink
Turned on mouse support for tmux
Browse files Browse the repository at this point in the history
Fixed some indentation styling issues
  • Loading branch information
jwyuen committed Sep 26, 2024
1 parent 6a67520 commit 4963155
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 21 deletions.
4 changes: 2 additions & 2 deletions dots/config/bspwm/sxhkdrc
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ alt + @space
~button2
jgmenu --csv-file=~/.config/bspwm/scripts/menu.txt --config-file=~/.config/bspwm/jgmenurc --at-pointer

# Scratchpad
# Scratchpad / note pad
super + alt + o
tdrop -a -w 70% -h 35% -y 0 -x 15% --class scratch alacritty --class=scratch
tdrop -a -w 70% -h 55% -y 0 -x 15% --class scratch alacritty --class=scratch

# Power off, Reboot, Log out, Lockscreen, kill an app
ctrl + super + alt + {p,r,q,l,k}
Expand Down
33 changes: 16 additions & 17 deletions nix-config/home/neovim.nix
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ in {
bufferline.enable = true;
comment.enable = true;
cmp = {
enable = true;
autoEnableSources = true;
enable = true;
autoEnableSources = true;
};
cmp-buffer.enable = true;
cmp-nvim-lsp.enable = true;
Expand All @@ -78,33 +78,32 @@ in {
};
luasnip.enable = true;
lsp = {
enable = true;
servers = {
bashls.enable = true;
# cssls.enable = true;
enable = true;
servers = {
bashls.enable = true;
# cssls.enable = true;
docker-compose-language-service.enable = true;
dockerls.enable = true;
# html.enable = true;
# jsonls.enable = true;
lua-ls.enable = true;
lua-ls.enable = true;
marksman.enable = true;
nil-ls.enable = true;
nixd.enable = true;
nixd.enable = true;
nginx-language-server.enable = true;
phpactor.enable = true;
pyright.enable = true;
pyright.enable = true;
rust-analyzer = {
enable = true;
installRustc = true;
installCargo = true;
};
enable = true;
installRustc = true;
installCargo = true;
};
sqls.enable = true;
tailwindcss.enable = true;
tsserver.enable = true;
tailwindcss.enable = true;
tsserver.enable = true;
yamlls.enable = true;
zls.enable = true;
};

};
};
lsp-lines.enable = true;
mini = {
Expand Down
4 changes: 2 additions & 2 deletions nix-config/home/tmux.nix
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,7 @@ in
bind-key -n C-l select-pane -R
bind-key -n C-S-F2 new-session
bind-key "o" run-shell "sesh connect \"$(
sesh list | fzf-tmux -p 55%,60% \
bind-key "o" run-shell "sesh connect \"$(sesh list | fzf-tmux -p 55%,60% \
--no-sort --ansi --border-label ' sesh ' --prompt '⚡ ' \
--header ' ^a all ^t tmux ^g configs ^x zoxide ^d tmux kill ^f find' \
--bind 'tab:down,btab:up' \
Expand Down Expand Up @@ -108,6 +107,7 @@ in
set -g set-clipboard on # use system clipboard
set -g status-position top # macOS / darwin style
setw -g mode-keys vi
set-option -g mouse on
set -g @fzf-url-fzf-options '-p 60%,30% --prompt=" " --border-label=" Open URL "'
set -g @fzf-url-history-limit '2000'
Expand Down

0 comments on commit 4963155

Please sign in to comment.