Compare commits

...

4 Commits

Author SHA1 Message Date
15837f1b01 fix clipboard with nvim 2024-05-13 19:14:54 -07:00
a1838f70c0 add fingers keybinds 2024-05-13 19:14:14 -07:00
7dc53ccefc switch to kitty for keybinds 2024-05-13 19:13:58 -07:00
6c4a07a003 use Xwayland for kitty 2024-05-13 19:13:27 -07:00
4 changed files with 5 additions and 3 deletions

View File

@ -96,6 +96,8 @@ set-option -g repeat-time 0
# Install plugin manager # Install plugin manager
set -g @plugin 'fcsonline/tmux-thumbs' set -g @plugin 'fcsonline/tmux-thumbs'
run-shell ~/.tmux/plugins/tmux-thumbs/tmux-thumbs.tmux run-shell ~/.tmux/plugins/tmux-thumbs/tmux-thumbs.tmux
set -g @thumbs-key F
set -g @thumbs-command 'echo -n {} | wl-copy'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) # Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
set -g @plugin 'tmux-plugins/tpm' set -g @plugin 'tmux-plugins/tpm'

View File

@ -29,7 +29,6 @@ let mapleader = " "
" clipboard " clipboard
set clipboard=unnamedplus set clipboard=unnamedplus
set clipboard+=unnamed
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" ui " ui

View File

@ -12,6 +12,7 @@ in {
settings = { settings = {
disable_ligatures = "never"; disable_ligatures = "never";
cursor_shape = "block"; cursor_shape = "block";
linux_display_server = "x11";
}; };
}; };
}; };

View File

@ -129,7 +129,7 @@ in {
"org/gnome/shell" = { "org/gnome/shell" = {
favorite-apps = [ favorite-apps = [
"google-chrome.desktop" "google-chrome.desktop"
"org.gnome.Console.desktop" "kitty.desktop"
"steam.desktop" "steam.desktop"
"discord.desktop" "discord.desktop"
]; ];
@ -203,7 +203,7 @@ in {
minimize = []; minimize = [];
}; };
} // generate_custom_keybindings { } // generate_custom_keybindings {
"terminal" = { binding = "<Super><Control>Return"; command = "kgx"; name = "Open Terminal"; }; "terminal" = { binding = "<Super><Control>Return"; command = "kitty"; name = "Open Terminal"; };
"browser" = { binding = "<Super><Control>b"; command = "google-chrome-stable --simulate-outdated-no-au='Tue, 31 Dec 2099 23:59:59 GMT'"; name = "Open Browser"; }; "browser" = { binding = "<Super><Control>b"; command = "google-chrome-stable --simulate-outdated-no-au='Tue, 31 Dec 2099 23:59:59 GMT'"; name = "Open Browser"; };
"steam" = { binding = "<Super><Control>s"; command = "steam"; name = "Open Steam"; }; "steam" = { binding = "<Super><Control>s"; command = "steam"; name = "Open Steam"; };
"discord" = { binding = "<Super><Control>d"; command = "discord"; name = "Open Discord"; }; "discord" = { binding = "<Super><Control>d"; command = "discord"; name = "Open Discord"; };