Theming and docs

This commit is contained in:
iFargle 2023-08-15 11:05:06 +09:00
parent cb52188c45
commit 639382393e
3 changed files with 25 additions and 5 deletions

View file

@ -1,6 +1,16 @@
# NixOS Configuration Repository
Repo for nix configuration files
---
# To Do List
[ ] tmux config / theming
[ ] waybar config / theming
[ ] hyprland config / theming
[ ] powerline config / theming
[ ] nvidia drivers
[ ] other things I'm probably forgetting
---
# Information
### Home Manager
* Home Manager Documentation - [Link](https://nix-community.github.io/home-manager/index.html)
@ -26,11 +36,15 @@ Repo for nix configuration files
* `org/gnome/shell/extensions/nightthemeswitcher/icon-variants`
* `org/gnome/shell/extensions/nightthemeswitcher/shell-variants`
### neovim
1. `common/dotfiles/neovim.nix` - Change the following:
1. `home-manager/neovim.nix` - Change the following:
* `plugins = with pkgs.vimPlugins` - Add your theme under "Themes"
* `extraConfig` - Change the `colorscheme` section
* `extraConfig` - Change the `colorscheme` and `AirlineTheme` sections
### tmux / powerline
1. WIP
### hyprland / waybar
1. Work in progress...
1. WIP
### Firefox
1. `home-manager/firefox.nix` - Change the entry under "# Theming"
# GPG Keys
1. Import your GPG key `albert.key`

View file

@ -15,6 +15,8 @@
privacy-redirect
link-cleaner
demodal
# Theming
gruvbox-dark-theme
];
search.default = "DuckDuckGo";

View file

@ -76,9 +76,13 @@
set expandtab
set softtabstop=2
set cursorline
set nowrap
# set nowrap
set wrap
let g:rainbow_active = 1
colorscheme tokyonight-night
# Theming
colorscheme gruvbox
AirlineTheme gruvbox
'';
};
}