Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wizzdom/dotfiles
My linux configs & dotfiles
https://github.com/wizzdom/dotfiles
configuration-files dotfiles neovim neovim-dotfiles vim zsh
Last synced: 25 days ago
JSON representation
My linux configs & dotfiles
- Host: GitHub
- URL: https://github.com/wizzdom/dotfiles
- Owner: wizzdom
- Created: 2020-08-04T17:53:25.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-04-11T14:09:07.000Z (7 months ago)
- Last Synced: 2024-04-11T17:06:40.805Z (7 months ago)
- Topics: configuration-files, dotfiles, neovim, neovim-dotfiles, vim, zsh
- Language: Lua
- Homepage:
- Size: 30.5 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dotfiles :computer:
All of my dotfiles in one place for convenience and easy setup :sunglasses:
## Setup
### Install yadm```bash
# Arch Linux
sudo pacman -S yadm# Other
curl -fLo $HOME/.local/bin/yadm https://github.com/TheLocehiliosan/yadm/raw/master/yadm && chmod a+x $HOME/.local/bin/yadm
```### Clone dotfiles
```bash
# Clone with https
yadm clone https://github.com/wizzdom/dotfiles.git
# or
# Clone with ssh
yadm clone [email protected]:wizzdom/dotfiles.git
```### Required fonts
These fonts are required for various parts of the dotfiles *(e.g. statusbar icons)* to work properly.
```bash
paru -S --needed adobe-source-code-pro-fonts \
adobe-source-han-sans-cn-fonts \
adobe-source-han-sans-hk-fonts \
adobe-source-han-sans-jp-fonts \
adobe-source-han-sans-kr-fonts \
adobe-source-han-sans-otc-fonts \
adobe-source-han-sans-tw-fonts \
awesome-terminal-fonts \
cantarell-fonts \
consolas-font \
gnu-free-fonts \
gsfonts \
inter-font \
libfontenc \
libxfont2 \
noto-fonts \
noto-fonts-sc \
otf-font-awesome \
powerline-fonts \
python-fonttools \
ttf-font-awesome \
ttf-meslo-nerd-font-powerlevel10k \
ttf-ms-fonts \
ttf-nerd-fonts-symbols \
ttf-nerd-fonts-symbols-common \
ttf-ubuntu-font-family \
xorg-font-util \
xorg-fonts-encodings \
xorg-fonts-type1
```
---## ZSH
### Get Dependencies
- **zsh** - _obviously!_
- **zsh-syntax-highlighting** - syntax highlighting for ZSH in standard repos
- **autojump** - jump to directories with `j` or `jc` for child or `jo` to open in file manager
- **zsh-autosuggestions** - Suggestions based on your history### Arch linux (paru)
```bash
paru -S --needed zsh zsh-syntax-highlighting autojump zsh-autosuggestions
```### Ubuntu/Debian
```bash
sudo apt install zsh zsh-syntax-highlighting autojump zsh-autosuggestions
```Finish the conversion by changing your user in `/etc/passwd` to `/bin/zsh` instead of `/bin/bash` or by typing `chsh $USER` and entering `/bin/zsh`