From c4be65c0b99be17205e60aba539e635669c5c547 Mon Sep 17 00:00:00 2001 From: Juan Shotyou Date: Sun, 25 Aug 2024 14:36:11 +0100 Subject: [PATCH] Fixed tmux issue + added more plugins --- .tmux.conf | 4 ++++ .vim/vimrc | 5 ++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.tmux.conf b/.tmux.conf index 6486255..cf32445 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -35,3 +35,7 @@ set-window-option -g pane-base-index 1 # Move to next/previous window with Alt+k/Alt+j bind -n M-j previous-window bind -n M-k next-window + +# Fix tmux color issue for vim +set -g default-terminal "xterm-256color" + diff --git a/.vim/vimrc b/.vim/vimrc index 6c9fdfa..1331a40 100644 --- a/.vim/vimrc +++ b/.vim/vimrc @@ -46,8 +46,8 @@ call plug#begin('~/.vim/autoload/plug') Plug 'davidhalter/jedi-vim' Plug 'vim-airline/vim-airline' -Plug 'preservim/nerdtree' Plug 'vim-airline/vim-airline-themes' +Plug 'preservim/nerdtree' Plug 'morhetz/gruvbox' Plug 'sheerun/vim-polyglot' Plug 'ryanoasis/vim-devicons' @@ -55,6 +55,9 @@ Plug 'scrooloose/nerdcommenter' Plug 'Xuyuanp/nerdtree-git-plugin' Plug 'tiagofumo/vim-nerdtree-syntax-highlight' Plug 'PhilRunninger/nerdtree-visual-selection' +Plug 'tpope/vim-fugitive' +Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' } +Plug 'tpope/vim-fireplace', { 'for': 'clojure' } call plug#end()