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) 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') diff --git a/tmux/.config/tmux/tmux.conf b/tmux/.config/tmux/tmux.conf index ebe67ff..b4e7ba6 100644 --- a/tmux/.config/tmux/tmux.conf +++ b/tmux/.config/tmux/tmux.conf @@ -42,11 +42,20 @@ 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 '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' +run '~/.config/tmux/plugins/tpm/tpm'