Update alacritty, bspwm, nvim cfg

This commit is contained in:
Smirnov Olexandr 2021-01-27 16:11:01 +02:00
parent c7da10d076
commit 7a0f05c664
3 changed files with 19 additions and 9 deletions

View file

@ -12,16 +12,16 @@ font:
hinting: true hinting: true
size: 12.0 size: 12.0
normal: normal:
family: Hack family: JetBrains Mono
style: Regular style: Regular
bold: bold:
family: Hack family: JetBrains Mono
style: Bold style: Bold
italic: italic:
family: Hack family: JetBrains Mono
style: Italic style: Italic
bold_italic: bold_italic:
family: Hack family: JetBrains Mono
style: Bold Italic style: Bold Italic
offset: offset:
x: 1 x: 1

View file

@ -9,13 +9,13 @@ Run() {
} }
## == Autostart ## == Autostart
setxkbmap "us,ua" ",winkeys" "grp:alt_shift_toggle" -option "ctrl:nocaps" & Run setxkbmap "us,ua" ",winkeys" "grp:alt_shift_toggle" -option "ctrl:nocaps" &
Run sxhkd -c .config/bspwm/sxhkd & Run sxhkd -c ./.config/bspwm/sxhkd &
~/.config/bspwm/bar.sh & ~/.config/bspwm/bar.sh &
Run nitrogen --restore & Run nitrogen --restore &
~/.script/autolock & ~/.script/autolock &
Run lxsession & Run lxsession &
Run picom & Run picom -b &
## == BSPWM ## == BSPWM

View file

@ -12,9 +12,10 @@ call plug#begin('~/.vim/plugged')
Plug 'editorconfig/editorconfig-vim' " EditorConfig support Plug 'editorconfig/editorconfig-vim' " EditorConfig support
Plug 'christoomey/vim-tmux-navigator' " Jump from vim to tmux and back Plug 'christoomey/vim-tmux-navigator' " Jump from vim to tmux and back
Plug 'Xuyuanp/nerdtree-git-plugin' " NERDTree git status Plug 'Xuyuanp/nerdtree-git-plugin' " NERDTree git status
Plug 'preservim/nerdcommenter' " Code commenter
" Completion & snippets " Completion & snippets
"Plug 'ervandew/supertab' Plug 'ervandew/supertab'
Plug 'jiangmiao/auto-pairs' Plug 'jiangmiao/auto-pairs'
Plug 'SirVer/ultisnips' Plug 'SirVer/ultisnips'
Plug 'mattn/emmet-vim', {'for': ['html', 'javascript']} Plug 'mattn/emmet-vim', {'for': ['html', 'javascript']}
@ -124,8 +125,17 @@ let g:lightline = {
\ 'linter_ok': 'lightline#ale#ok' \ '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 " 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' let g:user_emmet_mode='inv'
" UltiSnipts " UltiSnipts