getting there

This commit is contained in:
Till 2026-03-23 14:31:58 +01:00
parent 030e459540
commit c62c8e46f3
6 changed files with 55 additions and 47 deletions

View file

@ -7,7 +7,7 @@
./modules/messaging.nix ./modules/messaging.nix
./modules/r.nix ./modules/r.nix
./modules/tex.nix ./modules/tex.nix
./modules/mail ./modules/mail.nix
./modules/office-gui.nix ./modules/office-gui.nix
./modules/office-cli.nix ./modules/office-cli.nix
./modules/aichat.nix ./modules/aichat.nix

View file

@ -1,48 +1,6 @@
# Alias
set alias_file = ~/.local/share/neomutt/aliases.neomuttrc
source $alias_file
# External
set my_download_folder = ~/tmp
# Status bar
set status_chars = "✔↻٪A"
unset help
# Index
set index_format = "%-25.25F %<[y?%<[7d?%<[d?%[ %H:%M]&%[%a %H:%M]>&%[%d.%m. %Hh]>&%[%d.%m.%Y]> %Z %?X?▼ &?%s"
set strict_threads
set send_charset = "utf-8:iso-8859-1:us-ascii"
set charset = "utf-8"
# Pager view
set pager_index_lines = 10
set pager_context = 3
set pager_stop
set smart_wrap
set menu_scroll
set tilde
unset markers
ignore *
unignore from: to: cc: bcc: date: subject:
unhdr_order *
hdr_order from: to: cc: bcc: date: subject:
alternative_order text/plain text/enriched text/html
auto_view text/html
# Attachments
set rfc2047_parameters
set attach_save_dir = $my_download_folder
# Colors # Colors
color indicator white brightblack color indicator default brightblack
color index_flags brightmagenta default '.*' color index_flags brightmagenta default '.*'
color index_date cyan default color index_date cyan default
color index brightgreen default '~N' color index brightgreen default '~N'

View file

@ -0,0 +1,43 @@
# External
set my_download_folder = ~/tmp
# Status bar
set status_chars = "✔↻٪A"
unset help
# Index
set index_format = "%-25.25F %<[y?%<[7d?%<[d?%[ %H:%M]&%[%a %H:%M]>&%[%d.%m. %Hh]>&%[%d.%m.%Y]> %Z %?X?▼ &?%s"
set strict_threads
set send_charset = "utf-8:iso-8859-1:us-ascii"
set charset = "utf-8"
# Pager view
set pager_index_lines = 10
set pager_context = 3
set pager_stop
set smart_wrap
set menu_scroll
set tilde
unset markers
ignore *
unignore from: to: cc: bcc: date: subject:
unhdr_order *
hdr_order from: to: cc: bcc: date: subject:
alternative_order text/plain text/enriched text/html
auto_view text/html
# Attachments
set rfc2047_parameters
set attach_save_dir = $my_download_folder
# Alias
set alias_file = ~/.local/share/neomutt/aliases.neomuttrc
source $alias_file
source colors.neomuttrc

View file

@ -259,11 +259,11 @@ in
{ key = "l"; map = [ "index" "pager" ]; action = "<enter-command>unset signature<enter><list-reply>"; } { key = "l"; map = [ "index" "pager" ]; action = "<enter-command>unset signature<enter><list-reply>"; }
]; ];
extraConfig = builtins.readFile ./config.neomuttrc; extraConfig = builtins.readFile ../dotfiles/neomutt/config.neomuttrc;
}; };
xdg.configFile."neomutt/bindings.neomuttrc".source = ./bindings.neomuttrc; xdg.configFile."neomutt/colors.neomuttrc".source = config.lib.file.mkOutOfStoreSymlink "/etc/nixos/home/dotfiles/neomutt/colors.neomuttrc";
xdg.configFile."neomutt/bindings.neomuttrc".source = config.lib.file.mkOutOfStoreSymlink "/etc/nixos/home/dotfiles/neomutt/bindings.neomuttrc";
programs.neovim.plugins = with pkgs.vimPlugins; [ programs.neovim.plugins = with pkgs.vimPlugins; [
{ {
plugin = vim-pathogen; plugin = vim-pathogen;

View file

@ -135,6 +135,13 @@
''; '';
} }
{
plugin = catppuccin-nvim;
config = ''
colorscheme catppuccin-nvim
'';
}
# { # {
# plugin = papercolor-theme; # plugin = papercolor-theme;
# config = '' # config = ''