Files
.dotfiles/README.md
2024-08-11 23:28:22 +04:00

44 lines
1.0 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#my dotfiles for linux
##Config .bashrc
Первое устанавливаем oh-my-bash
```
bash -c "$(wget https://raw.githubusercontent.com/ohmybash/oh-my-bash/master/tools/install.sh -O -)"
```
После чего выберем тему дл установки я выбрал *agnoster*
Установим ее, найдем строчку
```
OSH_THEME="theme defaults"
```
после чего перечитаем конфиг
```
source ~/.bashrc
```
и склонируем репозиторий .mydofiles.
## My config VIM
Install vim bash-language server shellcheck
```bash
sudo dnf install vim bash-language-server shellcheck
```
install vim plugins
```bash
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
```
install bash-support
```bash
https://www.vim.org/scripts/script.php?script_id=365
```
Install bash-support
```bash
cp bash-support.zip ~/.vim
cd ~/.vim
unzip bash-support.zip
```
Config vimrc
```VIM
filetype plugin on
```