Merge pull request 'tmux' (#6) from tmux into master

Reviewed-on: #6
This commit is contained in:
clint 2022-12-29 08:39:31 +00:00
commit 5690f9386a
3 changed files with 15 additions and 9 deletions

View File

@ -65,5 +65,5 @@ keymap("n", "<leader>s", [[:%s/\<<C-r><C-w>\>/<C-r><C-w>/gI<Left><Left><Left>]],
keymap('n', '<Leader>gg', ':LazyGit<CR>', default_ops) keymap('n', '<Leader>gg', ':LazyGit<CR>', default_ops)
-- File Explorer -- File Explorer
keymap('n', '<Leader>e', ':NeoTreeShowToggle<CR>', default_ops) keymap('n', '<Leader>e', ':NeoTreeFocusToggle<CR>', default_ops)

View File

@ -42,10 +42,7 @@ return require('packer').startup(function(use)
use('kdheepak/lazygit.nvim') use('kdheepak/lazygit.nvim')
-- Sessions -- Sessions
use { use("tpope/vim-obsession")
'jedrzejboczar/possession.nvim',
requires = { 'nvim-lua/plenary.nvim' },
}
-- SuperTab -- SuperTab
use('ervandew/supertab') use('ervandew/supertab')

View File

@ -42,11 +42,20 @@ set-option -sg escape-time 10
# Plugins # Plugins
set -g @plugin 'tmux-plugins/tpm' # tmux plugin manager set -g @plugin 'tmux-plugins/tpm' # tmux plugin manager
# Things to plugin # # Things to plugin
set -g @plugin 'jimeh/tmux-themepack' # set -g @plugin 'jimeh/tmux-themepack'
set -g @themepack 'powerline/default/yellow' # set -g @themepack 'powerline/default/yellow'
# source ~/.config/tmux/statusline.conf # 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 # initializes tmux plugin manager - keep this at the bottom
# run '~/.config/tmux/plugins/tpm/tpm' run '~/.config/tmux/plugins/tpm/tpm'