From 639382393e24554d2a7f1917dc6ad327bcf47fec Mon Sep 17 00:00:00 2001 From: iFargle Date: Tue, 15 Aug 2023 11:05:06 +0900 Subject: [PATCH] Theming and docs --- README.md | 20 +++++++++++++++++--- home-manager/firefox.nix | 2 ++ home-manager/neovim.nix | 8 ++++++-- 3 files changed, 25 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 0e127e3d..8df2f944 100644 --- a/README.md +++ b/README.md @@ -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` diff --git a/home-manager/firefox.nix b/home-manager/firefox.nix index e76fbff6..f457e187 100644 --- a/home-manager/firefox.nix +++ b/home-manager/firefox.nix @@ -15,6 +15,8 @@ privacy-redirect link-cleaner demodal + # Theming + gruvbox-dark-theme ]; search.default = "DuckDuckGo"; diff --git a/home-manager/neovim.nix b/home-manager/neovim.nix index 031720e8..e96ffb9b 100644 --- a/home-manager/neovim.nix +++ b/home-manager/neovim.nix @@ -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 ''; }; }