This commit is contained in:
Bartek Stalewski 2020-02-01 17:58:00 +01:00
parent 7c14fa645c
commit b6ceab9ca7
2 changed files with 7 additions and 2 deletions

View File

@ -46,13 +46,14 @@ filetype plugin indent on
call plug#begin('~/.config/vim-plugins') call plug#begin('~/.config/vim-plugins')
Plug 'godlygeek/tabular' Plug 'godlygeek/tabular'
Plug 'ctrlpvim/ctrlp.vim'
Plug 'tpope/vim-fugitive' Plug 'tpope/vim-fugitive'
Plug 'scrooloose/syntastic' Plug 'scrooloose/syntastic'
Plug 'edkolev/tmuxline.vim' Plug 'edkolev/tmuxline.vim'
Plug 'itchyny/lightline.vim' Plug 'itchyny/lightline.vim'
Plug 'brendonrapp/smyck-vim' Plug 'brendonrapp/smyck-vim'
Plug 'bitc/vim-bad-whitespace' Plug 'bitc/vim-bad-whitespace'
+Plug '/usr/local/opt/fzf'
+Plug 'junegunn/fzf.vim'
call plug#end() call plug#end()
syntax on syntax on

View File

@ -14,6 +14,10 @@ alias ll='ls -lh'
source ~/.zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh source ~/.zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
source ~/.zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh source ~/.zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
source ~/.zsh/themes/powerlevel10k/powerlevel10k.zsh-theme source ~/.zsh/themes/powerlevel10k/powerlevel10k.zsh-theme
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh [[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
FZF_DEFAULT_COMMAND='git ls-files --cached --others --exclude-standard | fd'
FZF_DEFAULT_OPTS="-e --height 40% --preview='bat --color=always --tabs=2 --style=plain {}'"
[ -e ~/.zshrc.local ] && source ~/.zshrc.local [ -e ~/.zshrc.local ] && source ~/.zshrc.local