https://github.com/adilzouitine/boring_dotfiles
:page_with_curl: My personal and boring dotfiles
https://github.com/adilzouitine/boring_dotfiles
dotfiles neovim
Last synced: 2 months ago
JSON representation
:page_with_curl: My personal and boring dotfiles
- Host: GitHub
- URL: https://github.com/adilzouitine/boring_dotfiles
- Owner: AdilZouitine
- Created: 2021-11-10T17:53:16.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-12-26T11:23:08.000Z (over 3 years ago)
- Last Synced: 2025-03-08T19:39:45.603Z (2 months ago)
- Topics: dotfiles, neovim
- Language: Vim script
- Homepage:
- Size: 1.17 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# boring_dotfiles
My personal and boring dotfiles## Nvim

**You need before installing my config:**
**NeoVim**:
- `sudo apt install neovim` on Debian
- `brew install neovim` on MacOs**Clang (llvm)**:
- `sudo apt install llvm` on Debian
- `brew install llvm` on MacOs**rustup**:
- `rustup component add rls rust-analysis rust-src`**nodejs** >= 12.12 :
- `curl -sL install-node.vercel.app/lts | sudo bash`
**black**:
- `pip install black`
**Meslo nerd font**:```
wget https://github.com/ryanoasis/nerd-fonts/releases/download/v2.1.0/Meslo.zip
unzip Meslo.zip -d ~/.fonts
# If you are on MacOs
unzip Meslo.zip -d ~/Library/Fonts
fc-cache -fv
```**Install my Boring NeoVim**:
```
chmod +x setup/install_editor.sh
./setup/install_editor.sh
```
Update:
```
chmod +x setup/update_editor.sh
./setup/update_editor.sh
```
ET VOILÀ !!## Oh-My-Zsh

**You need before installing my config:**
**Install** `zsh`:
- `sudo apt install zsh` on Debian
_ `brew install zsh` on MacOs**Install** `oh-my-zsh`:
- `sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"`
**Install** `Powerline10k`:
- `git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k`
**Install** `exa`:
- `sudo apt install exa` on Debian
- `brew install exa` on MacOs
- `cargo install exa` with Cargo**Install my Boring Zsh**:
```
chmod +x setup/setup_zsh.sh
./setup/setup_zsh.sh
```
TADAAAAAA !!