An open API service indexing awesome lists of open source software.

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)

Awesome Lists containing this project

README

          

# Dotfiles


desktop

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
```