Compare commits
No commits in common. "0fbd88a5e55c6f62c2ea7d6032af95c428e35531" and "0cf7a0e1f1f303044e7c4f943557de0c6ffe35c3" have entirely different histories.
0fbd88a5e5
...
0cf7a0e1f1
19
.tmux.conf
19
.tmux.conf
@ -35,22 +35,3 @@ 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"
|
||||
|
||||
# Enable mouse mode
|
||||
set -g mouse on
|
||||
|
||||
# Tmux Plugin Manager
|
||||
# Note: Clone https://github.com/tmux-plugins/tpm to ~/.tmux/plugins/tpm first
|
||||
set -g @plugin 'tmux-plugins/tpm'
|
||||
|
||||
# Theme
|
||||
set -g @plugin 'egel/tmux-gruvbox'
|
||||
set -g @tmux-gruvbox 'dark'
|
||||
#set -g @plugin 'jimeh/tmux-themepack'
|
||||
#set -g @themepack 'powerline/double/magenta'
|
||||
|
||||
# Load Tmux Plugin Manager (keep this at the end)
|
||||
run '~/.tmux/plugins/tpm/tpm'
|
||||
|
23
.vim/vimrc
23
.vim/vimrc
@ -28,12 +28,10 @@ set history=10000 " Set the commands to save in history default number is 20.
|
||||
set wildmenu " Enable auto completion menu after pressing TAB.
|
||||
set wildmode=list:longest " Make wildmenu behave like similar to Bash completion.
|
||||
set title " Show file title
|
||||
set cc=100 " Enable visual limit at 100 chars for good code formatting practice
|
||||
set guifont=hack_nerd_font:h11
|
||||
set bg=dark
|
||||
set relativenumber
|
||||
" set cc=100 " Enable visual limit at 100 chars for good code formatting practice
|
||||
|
||||
let g:kite_supported_languages = ['python', 'javascript', 'go']
|
||||
let g:kite_supported_languages = ['python', 'javascript']
|
||||
|
||||
|
||||
" There are certain files that we would never want to edit with Vim.
|
||||
@ -48,8 +46,8 @@ call plug#begin('~/.vim/autoload/plug')
|
||||
|
||||
Plug 'davidhalter/jedi-vim'
|
||||
Plug 'vim-airline/vim-airline'
|
||||
Plug 'vim-airline/vim-airline-themes'
|
||||
Plug 'preservim/nerdtree'
|
||||
Plug 'vim-airline/vim-airline-themes'
|
||||
Plug 'morhetz/gruvbox'
|
||||
Plug 'sheerun/vim-polyglot'
|
||||
Plug 'ryanoasis/vim-devicons'
|
||||
@ -57,15 +55,12 @@ 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' }
|
||||
Plug 'dense-analysis/ale'
|
||||
|
||||
call plug#end()
|
||||
|
||||
" Plugin configs
|
||||
|
||||
colorscheme gruvbox
|
||||
let g:bargreybars_auto=0
|
||||
let g:airline_solorized_bg='dark'
|
||||
let g:airline_powerline_fonts=1
|
||||
@ -74,20 +69,12 @@ let g:airline#extension#tabline#left_sep=' '
|
||||
let g:airline#extension#tabline#left_alt_sep='|'
|
||||
let g:airline#extension#tabline#formatter='unique_tail'
|
||||
let NERDTreeQuitOnOpen=1
|
||||
|
||||
let g:WebDevIconsUnicodeDecorateFolderNodes = 1
|
||||
let g:WebDevIconsUnicodeDecorateFolderNodeDefaultSymbol = '#'
|
||||
let g:WebDevIconsUnicodeDecorateFileNodesExtensionSymbols = {}
|
||||
let g:WebDevIconsUnicodeDecorateFileNodesExtensionSymbols['nerdtree'] = '#'
|
||||
let g:ale_virtualtext_cursor = 'current'
|
||||
let g:ale_linters = {
|
||||
\ 'python': ['flake8', 'pylint'],
|
||||
\ 'go': ['vet', 'errcheck'],
|
||||
\}
|
||||
let g:ale_python_flake8_options = '--ignore=E501'
|
||||
let g:ale_echo_msg_format = '[%linter%] [%severity%] %code% %s'
|
||||
let g:gruvbox_contrast_dark = 'soft'
|
||||
|
||||
colorscheme gruvbox
|
||||
" " }}}
|
||||
|
||||
|
||||
|
@ -1,7 +1,3 @@
|
||||
#!/bin/bash
|
||||
|
||||
rsync -ax --exclude .git --exclude setup_dotenv_files.sh --exclude vim_fonts ./ ~/
|
||||
curl --no-progress-meter -fLo ~/.vim/autoload/plug.vim --create-dirs \
|
||||
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
||||
|
||||
echo 'For VIM: Remember to run ":PlugInstall" on first run to set up the themes and plugins!'
|
||||
rsync -ax --exclude ./.git --exclude setup_dotenv_files.sh ./ ~/
|
||||
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user