diff options
author | Azat Bahawi <azat@bahawi.net> | 2024-01-04 11:55:51 +0300 |
---|---|---|
committer | Azat Bahawi <azat@bahawi.net> | 2024-01-04 11:55:51 +0300 |
commit | b41c88fa6e6348d74dd9a27f51e72799bd9f7230 (patch) | |
tree | d149e2dec10dffa3bc617409ab192c8ebf9cfea9 /modules/common | |
parent | 2023-12-26 (diff) |
2024-01-04
Diffstat (limited to '')
-rw-r--r-- | modules/common/alacritty.nix | 9 | ||||
-rw-r--r-- | modules/common/emacs/doom/config.el | 2 |
2 files changed, 1 insertions, 10 deletions
diff --git a/modules/common/alacritty.nix b/modules/common/alacritty.nix index 142f6c5..86d65eb 100644 --- a/modules/common/alacritty.nix +++ b/modules/common/alacritty.nix @@ -73,10 +73,6 @@ in { foreground = yellow; background = black; }; - line_indicator = { - foreground = null; - background = null; - }; selection = { text = "CellBackground"; background = "CellForeground"; @@ -98,10 +94,6 @@ in { }; }; }; - bell = { - duration = 0; - command = null; # TODO notify-send? - }; cursor = { style = { shape = "Block"; @@ -109,7 +101,6 @@ in { }; vi_mode_style = "Block"; }; - selection.save_to_clipboard = true; # TODO autocutsel? }; }; }; diff --git a/modules/common/emacs/doom/config.el b/modules/common/emacs/doom/config.el index 7d92aea..13eb5ba 100644 --- a/modules/common/emacs/doom/config.el +++ b/modules/common/emacs/doom/config.el @@ -171,7 +171,7 @@ (setq elfeed-db-directory "~/.elfeed" elfeed-enclosure-default-dir (concat elfeed-db-directory "/enclosures") - rmh-elfeed-org-files '((concat elfeed-db-directory "/index.org")) + rmh-elfeed-org-files (list (concat elfeed-db-directory "/index.org")) elfeed-goodies/powerline-default-separator nil elfeed-goodies/entry-pane-size 0.75 elfeed-goodies/entry-pane-position 'bottom) |