https://github.com/nyquase/dotfiles
My dotfiles (zsh, neovim, terminal)
https://github.com/nyquase/dotfiles
dotfiles neovim ubuntu vim zsh
Last synced: 11 months ago
JSON representation
My dotfiles (zsh, neovim, terminal)
- Host: GitHub
- URL: https://github.com/nyquase/dotfiles
- Owner: Nyquase
- Created: 2017-03-18T21:07:01.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-08-16T08:03:06.000Z (almost 3 years ago)
- Last Synced: 2025-07-13T04:40:31.935Z (12 months ago)
- Topics: dotfiles, neovim, ubuntu, vim, zsh
- Language: Shell
- Homepage:
- Size: 24.3 MB
- Stars: 4
- Watchers: 0
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Dotfiles
This repository contains my personal configuration files and scripts.
I'm using these on an **Ubuntu** 22.04 currently
Here is a non exhaustive list of the tools I use:
- **zsh** with:
- **[oh-my-zsh](https://ohmyz.sh/)**
- **[powerlevel10k](https://github.com/romkatv/powerlevel10k)**
- **[zplug](https://github.com/zplug/zplug)**
- **[vi-mode](https://github.com/Nyquase/vi-mode)**
- and more
- **[neovim](https://neovim.io/)** with **[vim-plug](https://github.com/junegunn/vim-plug)**
- **[Helios theme](https://github.com/reyemxela/base16-helios-exported-themes)** for terminal
### Installation
You should be able to install this configuration by running
```sh
bash -c "$(wget -qO- https://raw.github.com/Nyquase/dotfiles/master/install.sh)"
```
Or
```sh
bash -c "$(curl -fsSL https://raw.github.com/Nyquase/dotfiles/master/install.sh)"
```
Or by cloning and running the script
```sh
git clone https://github.com/Nyquase/dotfiles.git ~/.dotfiles
cd ~/.dotfiles
./install.sh
```
> You will have to enter your root password as the script uses `sudo`
> Be aware that this script installs `gnome-shell-extension-manager`, this package depends on like a billion dependencies. I use it for the "Blur my shell" extension but there is a lot of cool gnome extensions.
You can also just cherry-pick the files you want :)
### Trying without installing with Docker
You can build this image and try the zsh and neovim config.
```sh
docker build -t nyquase-dotfiles .
```
```sh
docker run -it nyquase-dotfiles
```