Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hanivan/dotfiles
View of all my desktop setups~
https://github.com/hanivan/dotfiles
archlinux bspwm dotfiles linux neovim
Last synced: 26 days ago
JSON representation
View of all my desktop setups~
- Host: GitHub
- URL: https://github.com/hanivan/dotfiles
- Owner: Hanivan
- Created: 2021-12-18T07:14:59.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-09-17T11:16:44.000Z (over 2 years ago)
- Last Synced: 2024-11-12T09:13:25.979Z (3 months ago)
- Topics: archlinux, bspwm, dotfiles, linux, neovim
- Language: Shell
- Homepage:
- Size: 18.7 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hello there 👋
Welcome to my personal dotfiles, hope you find something useful here ^-^
I made this dotfiles structure as neat as possible. Yaa~, besides making it easier for myself, it also makes it easier for others to copy my setup.
### My Rig
───────── Hardware Information ─────────
- **Device:** 80XU Lenovo Ideapad 320-14AST 💻
- **CPU:** AMD A4-9120 2.2Ghz ⚙️
- **GPU:** AMD ATI Radeon R3 ⚔️
- **RAM:** 16GB 🌡️───────── Software Information ─────────
- **OS:** [Artix Linux](https://artixlinux.org) Runit with [Zen Kernel](https://github.com/zen-kernel/zen-kernel) ❄️
- **WM:** [bspwm](https://github.com/baskerville/bspwm) 🎨
- ~~**DE:** [xfce4](https://wiki.archlinux.org/title/xfce) 🐭~~
- **SHELL:** [zsh](https://wiki.archlinux.org/title/Zsh) with [oh-my-zsh](https://github.com/ohmyzsh/ohmyzsh) 🐚
- **Terminal:** [kitty](https://github.com/kovidgoyal/kitty) 🐱
- **Panel:** [polybar](https://github.com/polybar/polybar) using [nerd fonts](https://github.com/ryanoasis/nerd-fonts) glyphs icons 🍜
- **Compositor:** [picom](https://aur.archlinux.org/packages/picom-jonaburg-git) ✨
- **Notify Deamon:** [Dunst](https://wiki.archlinux.org/title/Dunst) ✉️
- **Application Launcher:** [rofi](https://wiki.archlinux.org/title/Rofi) 🚀
- **File Manager:** [Thunar](https://wiki.archlinux.org/title/Thunar) 🔖
- **Text Editor:** [Neovim](https://wiki.archlinux.org/title/Neovim) 📄## [🍅 Red-sars](https://github.com/Hanivan/red-sars)
![red-sars-homescreen](./screenshot/red-sars/dotfiles2-desktop.png "homescreen")
![red-sars-etc](./screenshot/red-sars/dotfiles2-pacman_ani-cli.png)
![red-sars-workspace](./screenshot/red-sars/dotfiles2-kitty_ranger_nvim.png)**Running Application:**
- Terminal Update
- [ani-cli](https://github.com/pystardust/ani-cli)
- neofetch
- ranger
- neovim## [🥁 DBlue-naka](https://github.com/Hanivan/dblue-naka)
![dblue-naka-homescreen](./screenshot/dblue-naka/home.png "homescreen")
![dblue-naka-workspace](./screenshot/dblue-naka/term.png)
![dblue-naka-web](./screenshot/dblue-naka/browser-nvim.png)**Running Application:**
- neofetch
- pipes.sh
- firefox
- neovim[WARNING!]: Support for Arch Linux based systems only (instalation via pacman & aur)
### Download
```
mkdir -p ~/Documents/git && git clone --depth=1 https://github.com/Hanivan/dotfiles.git ~/Documents/git/dotfiles && cd ~/Documents/git/dotfiles
```### Instalation
You can run `setup.sh` file
```
./setup.sh
```(Please backup your configuration before. Because this command will **replace your own config** and install all necessary packages, icons, and fonts)
#### For Neovim
You can install extension & language server using [coc.nvim](https://github.com/neoclide/coc.nvim). In this setup I have configured several server languages, including:
- coc-tserver (JavaScript & TypeScript)
- coc-tslint-plugin (TypeScript)
- coc-python (Python)
- coc-prettier (Auto Format)
- coc-phpls (PHP)
- coc-json (JSON)
- coc-html (HTML)
- coc-emmet (Shorthand for HTML)
- coc-diagnostic (Diagnostic for language servers)
- coc-css (CSS)
- coc-clangd (C/C++)You just need to run this command on neovim
```
:CocInstall coc-tsserver coc-tslint-plugin coc-python coc-prettier coc-phpls coc-json coc-html coc-emmet coc-diagnostic coc-css coc-clangd
```### Keybinds
This table insipired by [@bandithijo](https://github.com/bandithijo/nvimrc)
#### Neovim
**MODE:**
**N**: Normal, **I**: Insert, **T**: Terminal, **C**: Command**NOTE:**
a b means "press a (release), then press b"
a+b means "press a (hold it), then press b"| Function | Mode | Key Name |
| -------------------------------- | ---- | ---------------------------------------------- |
| Leader | N | Space |
| Buffer next | N | Alt+Tab |
| Buffer previous | N | Alt+Shift+Tab |
| Buffer close | N | Ctrl+w |
| Search keyword forward | N | n |
| Search keyword backward | N | Shift+n |
| Telescope find_files | N | Ctrl+p |
| File Explorer toggle | N | Ctrl+b |
| Move window pane focus to left | N | Control+h |
| Move window pane focus to down | N | Control+j |
| Move window pane focus to up | N | Control+k |
| Move window pane focus to right | N | Control+l |
| Exit from terminal mode | T | Esc |
| Increase window vertical split | N | Ctrl+Shift+z |
| Decrease window vertical split | N | Ctrl+z |
| Increase window horizontal split | N | Ctrl+Shift+x |
| Decrease window horizontal split | N | Ctrl+x |
| Emmet leader key | N | Control+Space |
| Compile&Run C++ | N | F5 |
| Compile&Run C++ (OOP) | N | F6 |
| Compile SCSS | N | Ctrl+s |
| Run Live Server | N | Alt+l |**Note For Compiler On Neovim**
For C++ OOP. You must create folder structure like this.
```
haniv in 05-Methods λ tree .
.
├── bin
│ └── Main
└── src
└── Main.cpp
```Or you can change formula for copile C++ OOP at _~/.zshrc_. Search for `oopcpp`. Also you can change formula for compile C++ at _~/.config/nvim/general/settings.vim_. Search for `CompileCPP` function. For SCSS compile formula, you can search for `Auto Compiling Sass`
## Attention!!
Because I use a non-systemd distro. Expected if there is an error in this setup. You can fix it yourself. Thank You
### Don't Forget To Follow
Hey! If you want to know more about me. You can follow some of the social media that I have below:
- **YouTube:** [Lintasan Video](https://youtube.com/c/LintasanVideo)
- **LinkedIn:** [@hanivanrizky](https://id.linkedin.com/in/hanivanrizky)
- **Instagram:** [@hanivanrizky](https://instagram.com/hanivanrizky)
- **Telegram:** [@hanivanrizky](https://t.me/hanivanrizky)