edit readme

This commit is contained in:
h0lik
2024-10-05 21:47:52 +04:00
parent d16011186b
commit b3e265fce1
3 changed files with 17 additions and 5 deletions

View File

@@ -6,7 +6,7 @@ esac
# Path to your oh-my-bash installation. # Path to your oh-my-bash installation.
export OSH=~/.oh-my-bash export OSH=~/.oh-my-bash
source ~/.local/bin/bashmarks.sh
# Set name of the theme to load. Optionally, if you set this to "random" # 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. # it'll load a random theme each time that oh-my-bash is loaded.
OSH_THEME="bakke" OSH_THEME="bakke"
@@ -103,8 +103,10 @@ aliases=(
# Add wisely, as too many plugins slow down shell startup. # Add wisely, as too many plugins slow down shell startup.
plugins=( plugins=(
git git
bashmarks
sudo sudo
progress
bashmarks
pyenv
) )
# Which plugins would you like to conditionally load? (plugins can be found in ~/.oh-my-bash/plugins/*) # Which plugins would you like to conditionally load? (plugins can be found in ~/.oh-my-bash/plugins/*)

9
.vimrc
View File

@@ -17,9 +17,12 @@ Plug 'ghifarit53/tokyonight-vim'
Plug 'itspriddle/vim-shellcheck' Plug 'itspriddle/vim-shellcheck'
Plug 'vim-airline/vim-airline' Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes' Plug 'vim-airline/vim-airline-themes'
Plug 'JamshedVesuna/vim-markdown-preview'
Plug 'preservim/nerdtree'
Plug 'ryanoasis/vim-devicons'
call plug#end() call plug#end()
nnoremap <C-t> :NERDTreeToggle<CR>
set encoding=UTF-8
set termguicolors set termguicolors
let g:tokyonight_style = 'night' " available: night, storm let g:tokyonight_style = 'night' " available: night, storm
@@ -27,7 +30,7 @@ let g:tokyonight_enable_italic = 1
colorscheme tokyonight colorscheme tokyonight
let g:AutoPairsShorcutToggle = '<C-P>' let g:AutoPairsShorcutToggle = '<C-P>'
let vim_markdown_preview_github=1
if executable('bash-language-server') if executable('bash-language-server')
au User lsp_setup call lsp#register_server({ au User lsp_setup call lsp#register_server({
\ 'name': 'bash-language-server', \ 'name': 'bash-language-server',

View File

@@ -1,4 +1,11 @@
# my dotfiles for linux # my dotfiles for linux
## Справочка по работе с VIM
### Открываем NERDTree
- Комбинация <CTRL> + <T> <CTRL> + <R>
### Split
- Горизонтально <CTRL> + <W> s
- Вертикально <CTRL> + <W> v
- Перемешение <CTRL> + <W>
## Config .bashrc ## Config .bashrc
* Первое устанавливаем oh-my-bash * Первое устанавливаем oh-my-bash
``` ```