Fixed tmux issue + added more plugins

This commit is contained in:
Juan Shotyou 2024-08-25 14:36:11 +01:00
parent 0cf7a0e1f1
commit c4be65c0b9
2 changed files with 8 additions and 1 deletions

View File

@ -35,3 +35,7 @@ set-window-option -g pane-base-index 1
# Move to next/previous window with Alt+k/Alt+j # Move to next/previous window with Alt+k/Alt+j
bind -n M-j previous-window bind -n M-j previous-window
bind -n M-k next-window bind -n M-k next-window
# Fix tmux color issue for vim
set -g default-terminal "xterm-256color"

View File

@ -46,8 +46,8 @@ call plug#begin('~/.vim/autoload/plug')
Plug 'davidhalter/jedi-vim' Plug 'davidhalter/jedi-vim'
Plug 'vim-airline/vim-airline' Plug 'vim-airline/vim-airline'
Plug 'preservim/nerdtree'
Plug 'vim-airline/vim-airline-themes' Plug 'vim-airline/vim-airline-themes'
Plug 'preservim/nerdtree'
Plug 'morhetz/gruvbox' Plug 'morhetz/gruvbox'
Plug 'sheerun/vim-polyglot' Plug 'sheerun/vim-polyglot'
Plug 'ryanoasis/vim-devicons' Plug 'ryanoasis/vim-devicons'
@ -55,6 +55,9 @@ Plug 'scrooloose/nerdcommenter'
Plug 'Xuyuanp/nerdtree-git-plugin' Plug 'Xuyuanp/nerdtree-git-plugin'
Plug 'tiagofumo/vim-nerdtree-syntax-highlight' Plug 'tiagofumo/vim-nerdtree-syntax-highlight'
Plug 'PhilRunninger/nerdtree-visual-selection' Plug 'PhilRunninger/nerdtree-visual-selection'
Plug 'tpope/vim-fugitive'
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
Plug 'tpope/vim-fireplace', { 'for': 'clojure' }
call plug#end() call plug#end()