mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
There is nothing less I want to build for aarch64 than this
This commit is contained in:
parent
3e52c7648a
commit
9e3aa24078
7 changed files with 21 additions and 11 deletions
12
config/users/kat/personal/vim/default.nix
Normal file
12
config/users/kat/personal/vim/default.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.neovim = {
|
||||
extraConfig = ''
|
||||
${source ./init.vim}
|
||||
'';
|
||||
plugins = with pkgs.vimPlugins; [
|
||||
notmuch-vim
|
||||
];
|
||||
};
|
||||
}
|
||||
8
config/users/kat/personal/vim/init.vim
Normal file
8
config/users/kat/personal/vim/init.vim
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
" notmuch!
|
||||
let g:notmuch_config_file=$XDG_CONFIG_HOME . '/notmuch/notmuchrc'
|
||||
let g:notmuch_folders_count_threads=0
|
||||
let g:notmuch_date_format='%y-%m-%d %H:%M'
|
||||
let g:notmuch_datetime_format='%y-%m-%d %H:%M'
|
||||
let g:notmuch_show_date_format='%Y/%m/%d %H:%M'
|
||||
let g:notmuch_search_date_format='%Y/%m/%d %H:%M'
|
||||
let g:notmuch_html_converter='@elinks@/bin/elinks --dump'
|
||||
Loading…
Add table
Add a link
Reference in a new issue