diff --git a/.bashrc b/.bashrc index 91ae83b..ec2e5ed 100644 --- a/.bashrc +++ b/.bashrc @@ -6,7 +6,7 @@ esac # Path to your oh-my-bash installation. export OSH=~/.oh-my-bash - +source ~/.local/bin/bashmarks.sh # Set name of the theme to load. Optionally, if you set this to "random" # it'll load a random theme each time that oh-my-bash is loaded. OSH_THEME="bakke" @@ -103,8 +103,10 @@ aliases=( # Add wisely, as too many plugins slow down shell startup. plugins=( git - bashmarks sudo + progress + bashmarks + pyenv ) # Which plugins would you like to conditionally load? (plugins can be found in ~/.oh-my-bash/plugins/*) diff --git a/.vimrc b/.vimrc index f77a364..e26ecb8 100644 --- a/.vimrc +++ b/.vimrc @@ -17,9 +17,12 @@ Plug 'ghifarit53/tokyonight-vim' Plug 'itspriddle/vim-shellcheck' Plug 'vim-airline/vim-airline' Plug 'vim-airline/vim-airline-themes' +Plug 'JamshedVesuna/vim-markdown-preview' +Plug 'preservim/nerdtree' +Plug 'ryanoasis/vim-devicons' call plug#end() - - +nnoremap :NERDTreeToggle +set encoding=UTF-8 set termguicolors let g:tokyonight_style = 'night' " available: night, storm @@ -27,7 +30,7 @@ let g:tokyonight_enable_italic = 1 colorscheme tokyonight let g:AutoPairsShorcutToggle = '' - +let vim_markdown_preview_github=1 if executable('bash-language-server') au User lsp_setup call lsp#register_server({ \ 'name': 'bash-language-server', diff --git a/README.md b/README.md index 5440b09..d8597c3 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,11 @@ # my dotfiles for linux +## Справочка по работе с VIM +### Открываем NERDTree +- Комбинация + + +### Split +- Горизонтально + s +- Вертикально + v +- Перемешение + ## Config .bashrc * Первое устанавливаем oh-my-bash ```