From 6552c02a332882914c2fae08c6166b94d4682e00 Mon Sep 17 00:00:00 2001 From: Azat Bahawi Date: Mon, 15 Jan 2024 11:02:37 +0300 Subject: 2024-01-15 --- modules/common/alacritty.nix | 72 +++++++++++++++++++++------------ modules/common/emacs/default.nix | 2 +- modules/common/profiles/dev/default.nix | 1 + 3 files changed, 48 insertions(+), 27 deletions(-) (limited to 'modules/common') diff --git a/modules/common/alacritty.nix b/modules/common/alacritty.nix index 86d65eb..be3af21 100644 --- a/modules/common/alacritty.nix +++ b/modules/common/alacritty.nix @@ -19,7 +19,8 @@ in { y = size; }; dynamic_padding = false; - decorations = "full"; + decorations = "Full"; + startup_mode = "Maximized"; }; font = with config.fontScheme.monospaceFont; { normal = { @@ -41,7 +42,11 @@ in { inherit size; }; colors = with config.colourScheme; { - primary = {inherit background foreground;}; + primary = { + inherit background foreground; + dim_foreground = "None"; + bright_foreground = "None"; + }; cursor = { text = "CellBackground"; cursor = "CellForeground"; @@ -59,10 +64,6 @@ in { foreground = red; background = black; }; - footer_bar = { - foreground = black; - background = white; - }; }; hints = { start = { @@ -73,33 +74,52 @@ in { foreground = yellow; background = black; }; - selection = { - text = "CellBackground"; - background = "CellForeground"; - }; - normal = { - inherit black red green yellow blue magenta cyan white; - }; - bright = { - inherit - brightBlack - brightRed - brightGreen - brightYellow - brightBlue - brightMagenta - brightCyan - brightWhite - ; - }; + }; + line_indicator = { + foreground = "None"; + background = "None"; + }; + footer_bar = { + foreground = black; + background = white; + }; + selection = { + text = "CellBackground"; + background = "CellForeground"; + }; + normal = { + inherit + black + red + green + yellow + blue + magenta + cyan + white + ; + }; + bright = { + black = brightBlack; + red = brightRed; + green = brightGreen; + yellow = brightYellow; + blue = brightBlue; + magenta = brightMagenta; + cyan = brightCyan; + white = brightWhite; }; }; + selection.save_to_clipboard = true; cursor = { style = { + shape = "Block"; + blinking = "On"; + }; + vi_mode_style = { shape = "Block"; blinking = "Off"; }; - vi_mode_style = "Block"; }; }; }; diff --git a/modules/common/emacs/default.nix b/modules/common/emacs/default.nix index 7cd06e0..d16d168 100644 --- a/modules/common/emacs/default.nix +++ b/modules/common/emacs/default.nix @@ -133,7 +133,7 @@ in { texlab # lang (tex +lsp) texlive.combined.scheme-full # :lang org tex unzip # :tools debugger - wordnet # :tools (lookup +dictionary +offline) + # wordnet # :tools (lookup +dictionary +offline) yaml-language-server # :lang (yaml +lsp) zig # :lang zig :editor format zls # :lang (zig +lsp) diff --git a/modules/common/profiles/dev/default.nix b/modules/common/profiles/dev/default.nix index ecd586a..8c9e400 100644 --- a/modules/common/profiles/dev/default.nix +++ b/modules/common/profiles/dev/default.nix @@ -9,6 +9,7 @@ with lib; let in { imports = [ ./containers.nix + ./hidden.nix ./sql.nix ]; -- cgit v1.2.3