Gnome extensions + better theme integration
This commit is contained in:
parent
bd6b04c6a4
commit
d304c4c65a
4 changed files with 61 additions and 17 deletions
|
|
@ -1,3 +1,9 @@
|
|||
{
|
||||
programs.bat = { enable = true; config.theme = "Nord"; };
|
||||
programs.bat = {
|
||||
enable = true;
|
||||
config = {
|
||||
theme = "Nord";
|
||||
tabs = "2";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
let
|
||||
kakCmd = "kak";
|
||||
|
||||
strPalette = with pkgs.rice; palette.toRgbShortHex colorPalette;
|
||||
rustPlugins = with pkgs; [
|
||||
cargo
|
||||
cargo-watch
|
||||
|
|
@ -41,7 +41,6 @@ let
|
|||
yaml-language-server
|
||||
nodePackages.vscode-langservers-extracted
|
||||
];
|
||||
|
||||
in
|
||||
{
|
||||
home.sessionVariables = {
|
||||
|
|
@ -138,7 +137,36 @@ in
|
|||
]
|
||||
) ++ rustPlugins ++ bashPlugins ++ cppPlugins ++ pythonPlugins ++ javascriptPlugins ++ latexPlugins ++ nixPlugins ++ spellingPlugins ++ dataFormats;
|
||||
};
|
||||
xdg.configFile."kak/colors/nord.kak".source = ../configs/kak/colors/nord.kak;
|
||||
|
||||
xdg.configFile."kak/colors/nord.kak".text = with strPalette; ''
|
||||
set-face global value rgb:${normal.magenta},default
|
||||
set-face global type rgb:${bright.white},default
|
||||
set-face global identifier rgb:${normal.cyan},default
|
||||
set-face global string rgb:${normal.green},default
|
||||
set-face global error rgb:${normal.red},default
|
||||
set-face global keyword rgb:${normal.blue},default
|
||||
set-face global operator rgb:${normal.blue},default
|
||||
set-face global attribute rgb:${dark.blue},default
|
||||
set-face global comment rgb:${bright.blue},default
|
||||
set-face global meta rgb:${normal.yellow},default
|
||||
set-face global Default rgb:${normal.white},default
|
||||
set-face global PrimarySelection rgb:${normal.black},rgb:${normal.white}
|
||||
set-face global SecondarySelection rgb:${bright.white},rgb:${bright.black}
|
||||
set-face global PrimaryCursor rgb:${dark.black},rgb:${normal.yellow}
|
||||
set-face global SecondaryCursor rgb:${dark.black},rgb:${dark.white}
|
||||
set-face global MenuForeground rgb:${dark.white},rgb:${dark.white}
|
||||
set-face global MenuBackground default,rgb:${normal.black}
|
||||
set-face global MenuInfo default,rgb:${normal.black}
|
||||
set-face global Information rgb:${dark.black},rgb:${normal.cyan}
|
||||
set-face global StatusLine rgb:${normal.white},rgb:${normal.black}
|
||||
set-face global StatusLineMode rgb:${normal.blue},rgb:${normal.black}
|
||||
set-face global StatusLineInfo rgb:${normal.blue},rgb:${normal.black}
|
||||
set-face global StatusLineValue rgb:${normal.blue},rgb:${normal.black}
|
||||
set-face global StatusCursor rgb:${dark.black},rgb:${normal.yellow}
|
||||
set-face global Prompt rgb:${normal.cyan},rgb:${normal.black}
|
||||
set-face global BufferPadding default,default
|
||||
'';
|
||||
|
||||
xdg.configFile."kak-lsp/kak-lsp.toml".text = ''
|
||||
snippet_support = false
|
||||
verbosity = 2
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue