There is nothing less I want to build for aarch64 than this

This commit is contained in:
kat witch 2021-09-02 05:26:39 +01:00
parent 3e52c7648a
commit 9e3aa24078
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
7 changed files with 21 additions and 11 deletions

View file

@ -12,7 +12,6 @@
./packages.nix
./weechat.nix
./inputrc.nix
./rink.nix
./secrets.nix
];

View file

@ -31,7 +31,6 @@ in
vim-lastplace
vim-hexokinase
vim-easymotion
notmuch-vim
vim-nix
fzf-vim
vim-fugitive

View file

@ -21,15 +21,6 @@ let g:airline#extensions#tabline#enabled = 1
let g:Hexokinase_highlighters = ['virtual']
let g:Hexokinase_optInPatterns = 'full_hex,rgb,rgba,hsl,hsla,colour_names'
" 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'
" lastplace
let g:lastplace_ignore = "gitcommit,gitrebase,svn,hgcommit"

View file

@ -3,6 +3,7 @@
{
imports = [
./vim
./rink.nix
./zsh.nix
./rustfmt.nix
./packages.nix

View file

@ -0,0 +1,12 @@
{ config, pkgs, ... }:
{
programs.neovim = {
extraConfig = ''
${source ./init.vim}
'';
plugins = with pkgs.vimPlugins; [
notmuch-vim
];
};
}

View 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'