dotfiles: update

This commit is contained in:
Konstantin Bukley
2020-05-15 10:50:55 +03:00
parent 1644044bb5
commit 37caf7e3f7
2 changed files with 5 additions and 8 deletions

View File

@@ -1,5 +1,3 @@
# [ -z "$TMUX" ] && tmux a
[ -f ~/iCloud/secrets.sh ] && . ~/iCloud/secrets.sh [ -f ~/iCloud/secrets.sh ] && . ~/iCloud/secrets.sh
[ -f /etc/bashrc ] && . /etc/bashrc [ -f /etc/bashrc ] && . /etc/bashrc
[ -f /usr/local/etc/profile.d/z.sh ] && . /usr/local/etc/profile.d/z.sh [ -f /usr/local/etc/profile.d/z.sh ] && . /usr/local/etc/profile.d/z.sh
@@ -16,7 +14,11 @@ shopt -s checkwinsize
shopt -s no_empty_cmd_completion shopt -s no_empty_cmd_completion
shopt -s cdspell shopt -s cdspell
shopt -s checkhash shopt -s checkhash
shopt -s cmdhist # save multi-line commands in one
export BASH_SILENCE_DEPRECATION_WARNING=1
# export RUBY_CONFIGURE_OPTS="--with-openssl-dir=$(brew --prefix openssl@1.1)"
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:.:/usr/local/lib export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:.:/usr/local/lib
export EDITOR=nvim export EDITOR=nvim
export LANG=en_US.UTF-8 export LANG=en_US.UTF-8
@@ -109,7 +111,6 @@ fi
export PATH="$HOME/.cargo/bin:$PATH" export PATH="$HOME/.cargo/bin:$PATH"
__git_ps1() { :;}
if [ -e ~/.git-prompt.sh ]; then if [ -e ~/.git-prompt.sh ]; then
source ~/.git-prompt.sh source ~/.git-prompt.sh
fi fi

View File

@@ -3,7 +3,6 @@
" Description: Personal vim configuration " Description: Personal vim configuration
" ======================================================== " ========================================================
" -> General " -> General
" ======================================================== " ========================================================
@@ -90,14 +89,10 @@ Plug 'tpope/vim-vinegar'
" ======== Experimental ================================= " ======== Experimental =================================
Plug 'iamcco/markdown-preview.nvim',
\ { 'do': ':call mkdp#util#install()', 'for': 'markdown', 'on': 'MarkdownPreview' }
" Plug 'AndrewRadev/switch.vim' " Plug 'AndrewRadev/switch.vim'
" Plug 'zxqfl/tabnine-vim' " Plug 'zxqfl/tabnine-vim'
" Plug 'pechorin/any-jump.vim' " Plug 'pechorin/any-jump.vim'
" Plug 'neoclide/coc.nvim', {'branch': 'release'}
call plug#end() call plug#end()
@@ -305,6 +300,7 @@ command! -nargs=? -complete=dir AF
\ 'source': 'fd --type f --hidden --follow --exclude .git --no-ignore . '.expand(<q-args>) \ 'source': 'fd --type f --hidden --follow --exclude .git --no-ignore . '.expand(<q-args>)
\ }))) \ })))
let g:fzf_preview_window = ''
let g:fzf_layout = { 'window': { 'width': 0.3, 'height': 0.6, 'border': 'sharp' } } let g:fzf_layout = { 'window': { 'width': 0.3, 'height': 0.6, 'border': 'sharp' } }
let g:fzf_colors = let g:fzf_colors =
\ { 'fg': ['fg', 'Normal'], \ { 'fg': ['fg', 'Normal'],