https://github.com/sakuexe/.dotfiles
The dotfiles for my terminal environment
https://github.com/sakuexe/.dotfiles
config devenv neovim tmux zsh
Last synced: 24 days ago
JSON representation
The dotfiles for my terminal environment
- Host: GitHub
- URL: https://github.com/sakuexe/.dotfiles
- Owner: sakuexe
- Created: 2023-05-23T13:11:09.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-06T08:54:30.000Z (9 months ago)
- Last Synced: 2024-08-06T10:49:38.681Z (9 months ago)
- Topics: config, devenv, neovim, tmux, zsh
- Language: Lua
- Homepage:
- Size: 5.18 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# **Sakuexe .dotfiles**
This repository includes all the configuration files that I use, as well as
guides for installing them. Recommendations and helpful suggestions are
always appreciated! :)
Helpful tips and tricks are combined by me in the Wiki of this repository.
[Useful commands - .dotfiles Wiki](https://github.com/sakuexe/.dotfiles/wiki/Useful-commands)## Install Guides
```bash
git clone https://github.com/sakuexe/.dotfiles ~/.dotfiles
```### Installation script (recommended)
The recommended way to install the dotfiles is via the `install.sh` bash script.
It supports Ubuntu, Opensuse Tumbleweed and Arch Linux.```bash
./install.sh
```Each folder in this repository contains a `README.md` file with a guide for
installing the configuration files in that folder. If you would like to pick and
choose what to install.### Zsh
[Zsh dotfiles](./zsh/) - Shell and file navigation (config this first)
### Neovim
[Neovim Config Files](./nvim/) - Editor of choice
### Tmux
[Tmux dotfiles](./tmux/) - Terminal multiplexing
## Some bugs
I try to remember updating this section with any bugs that I encounter.
With hopefully solutions to them as well. That being said, I do appreciate
any help with solving these issues, that I may not have found a solution to.Nerdfont V3 Graphical Glitches
On some instances of WSL2, the nerdfonts are not rendered properly. This creates
graphical glitches in the terminal. Microsoft has already fixed most of this issue,
but if you are still experiencing some, make sure you update your terminal to the
newest version. I use the Windows Terminal. The preview version is a good thing
to try in a situation where you are experiencing graphical glitches.## Miscellaneous
Here's a list of some of the other stuff I enjoy having downloaded on my terminal as well.
- [Nerdfont](https://www.nerdfonts.com/) - For icons and symbols
- [live-server](https://www.chiarulli.me/Neovim/20-live-server/) - For automatically refreshing
the browser on reload```bash
# install the npm package globally
npm install -g live-server
# live preview a folder
live-server some-directory/
# or a singular file
live-server some-file.html
```- [git-credential-manager](https://github.com/git-ecosystem/git-credential-manager/blob/release/docs/install.md#tarball)
Download the latest [tarball](https://github.com/git-ecosystem/git-credential-manager/releases/latest)
```bash
tar -xvf -C /usr/local/bin
git-credential-manager configure
git config --global credential.credentialStore cache
# will remember your credentials after next login
```Uninstalling git-credential-manager
```bash
git-credential-manager unconfigure
rm $(command -v git-credential-manager)
```