all repos

dotfiles @ 7a0f05c

my dotfiles
3 files changed, 19 insertions(+), 9 deletions(-)
Update alacritty, bspwm, nvim cfg
Author: Smirnov Olexandr ss2316544@gmail.com
Committed at: 2021-01-27 16:11:01 +0200
Parent: c7da10d
M config/alacritty.yml

@@ -12,16 +12,16 @@ antialias: lcd

hinting: true size: 12.0 normal: - family: Hack + family: JetBrains Mono style: Regular bold: - family: Hack + family: JetBrains Mono style: Bold italic: - family: Hack + family: JetBrains Mono style: Italic bold_italic: - family: Hack + family: JetBrains Mono style: Bold Italic offset: x: 1
M config/bspwm/bspwmrc

@@ -9,13 +9,13 @@ then $@& fi

} ## == Autostart -setxkbmap "us,ua" ",winkeys" "grp:alt_shift_toggle" -option "ctrl:nocaps" & -Run sxhkd -c .config/bspwm/sxhkd & +Run setxkbmap "us,ua" ",winkeys" "grp:alt_shift_toggle" -option "ctrl:nocaps" & +Run sxhkd -c ./.config/bspwm/sxhkd & ~/.config/bspwm/bar.sh & Run nitrogen --restore & ~/.script/autolock & Run lxsession & -Run picom & +Run picom -b & ## == BSPWM
M config/nvim/init.vim

@@ -12,9 +12,10 @@ Plug 'metakirby5/codi.vim' " Live REPL

Plug 'editorconfig/editorconfig-vim' " EditorConfig support Plug 'christoomey/vim-tmux-navigator' " Jump from vim to tmux and back Plug 'Xuyuanp/nerdtree-git-plugin' " NERDTree git status + Plug 'preservim/nerdcommenter' " Code commenter " Completion & snippets - "Plug 'ervandew/supertab' + Plug 'ervandew/supertab' Plug 'jiangmiao/auto-pairs' Plug 'SirVer/ultisnips' Plug 'mattn/emmet-vim', {'for': ['html', 'javascript']}

@@ -124,8 +125,17 @@ \ 'linter_errors': 'lightline#ale#errors',

\ 'linter_ok': 'lightline#ale#ok' \ },} +" NERDTree +nnoremap <C-b> :NERDTreeToggle<CR> +let g:NERDTreeWinPos="right" +let NERDTreeIgnore = ['__pycache__', '\**\*.sw[po]','.DS_Store'] +let NERDTreeMinimalUI=1 +let NERDTreeShowHidden=0 +let g:NERDTreeWinSize = 28 + " Emmet -let g:user_emmet_expandabbr_key='<tab>' +"let g:user_emmet_expandabbr_key='<tab>' +let g:user_emmet_leader_key=',' let g:user_emmet_mode='inv' " UltiSnipts