From f2b2f8f6a3fc451a3b5ed41ee600b8bb3923e045 Mon Sep 17 00:00:00 2001 From: c Date: Thu, 29 Dec 2022 01:25:17 -0600 Subject: [PATCH 1/4] theme --- tmux/.config/tmux/tmux.conf | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/tmux/.config/tmux/tmux.conf b/tmux/.config/tmux/tmux.conf index ebe67ff..21e6b79 100644 --- a/tmux/.config/tmux/tmux.conf +++ b/tmux/.config/tmux/tmux.conf @@ -42,11 +42,17 @@ set-option -sg escape-time 10 # Plugins set -g @plugin 'tmux-plugins/tpm' # tmux plugin manager -# Things to plugin -set -g @plugin 'jimeh/tmux-themepack' -set -g @themepack 'powerline/default/yellow' +# # Things to plugin +# set -g @plugin 'jimeh/tmux-themepack' +# set -g @themepack 'powerline/default/yellow' # source ~/.config/tmux/statusline.conf +set -g @plugin 'egel/tmux-gruvbox' +set -g @tmux-gruvbox 'dark' # or 'light' + +set -g @plugin 'tmux-plugins/tmux-resurrect' +set -g @plugin 'tmux-plugins/tmux-continuum' + # initializes tmux plugin manager - keep this at the bottom -# run '~/.config/tmux/plugins/tpm/tpm' +run '~/.config/tmux/plugins/tpm/tpm' From 2b427b5f9286a209b6a88ae22cabf2dd33d2b5f4 Mon Sep 17 00:00:00 2001 From: c Date: Thu, 29 Dec 2022 01:25:38 -0600 Subject: [PATCH 2/4] focus neotree --- nvim/.config/nvim/lua/clint/keybindings.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/.config/nvim/lua/clint/keybindings.lua b/nvim/.config/nvim/lua/clint/keybindings.lua index 254db13..b10618e 100644 --- a/nvim/.config/nvim/lua/clint/keybindings.lua +++ b/nvim/.config/nvim/lua/clint/keybindings.lua @@ -65,5 +65,5 @@ keymap("n", "s", [[:%s/\<\>//gI]], keymap('n', 'gg', ':LazyGit', default_ops) -- File Explorer -keymap('n', 'e', ':NeoTreeShowToggle', default_ops) +keymap('n', 'e', ':NeoTreeFocusToggle', default_ops) From 6f93186b02b6eb291551063bb9cf3240a86ae9c7 Mon Sep 17 00:00:00 2001 From: c Date: Thu, 29 Dec 2022 02:18:52 -0600 Subject: [PATCH 3/4] better session --- nvim/.config/nvim/lua/clint/plugins.lua | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/nvim/.config/nvim/lua/clint/plugins.lua b/nvim/.config/nvim/lua/clint/plugins.lua index b1d5bd9..a2ad287 100644 --- a/nvim/.config/nvim/lua/clint/plugins.lua +++ b/nvim/.config/nvim/lua/clint/plugins.lua @@ -42,10 +42,7 @@ return require('packer').startup(function(use) use('kdheepak/lazygit.nvim') -- Sessions - use { - 'jedrzejboczar/possession.nvim', - requires = { 'nvim-lua/plenary.nvim' }, - } + use("tpope/vim-obsession") -- SuperTab use('ervandew/supertab') From b5938ef1e387a2e1242fc7c949be132f17918be6 Mon Sep 17 00:00:00 2001 From: c Date: Thu, 29 Dec 2022 02:19:02 -0600 Subject: [PATCH 4/4] sesson stuff --- tmux/.config/tmux/tmux.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tmux/.config/tmux/tmux.conf b/tmux/.config/tmux/tmux.conf index 21e6b79..b4e7ba6 100644 --- a/tmux/.config/tmux/tmux.conf +++ b/tmux/.config/tmux/tmux.conf @@ -47,12 +47,15 @@ set -g @plugin 'tmux-plugins/tpm' # tmux plugin manager # set -g @themepack 'powerline/default/yellow' # source ~/.config/tmux/statusline.conf +set -g @plugin 'xamut/tmux-weather' +set-option -g status-right "#{weather}" set -g @plugin 'egel/tmux-gruvbox' set -g @tmux-gruvbox 'dark' # or 'light' set -g @plugin 'tmux-plugins/tmux-resurrect' set -g @plugin 'tmux-plugins/tmux-continuum' +set -g @resurrect-strategy-nvim 'session' # initializes tmux plugin manager - keep this at the bottom run '~/.config/tmux/plugins/tpm/tpm'