mail, ssh
This commit is contained in:
parent
26ed81dbee
commit
92cfae9488
4 changed files with 30 additions and 26 deletions
|
|
@ -1,21 +1,6 @@
|
|||
# Here you list all the shortcuts.
|
||||
#
|
||||
# The shortcuts may be defined in two ways:
|
||||
#
|
||||
# 1. Run-or-raise form: shortcut,launch-command,[wm_class],[title]
|
||||
# * wm_class and title are optional and case sensitive
|
||||
# * if none is set, lowercased launch-command is compared with lowercased windows wm_classes and titles
|
||||
#
|
||||
# 2. Run only form: shortcut,calculate
|
||||
#
|
||||
# =================
|
||||
# Run or raise form
|
||||
# =================
|
||||
#
|
||||
# This line cycles any open gnome-terminal (matched by wm_class = Gnome-terminal on Ubuntu 17.10) OR if not found, launches new one.
|
||||
# If you're using Arch, you may want to match by wm_class = gnome-terminal-server , just check yourself by Alt+F2/lg/Windows
|
||||
<Super>b,firefox,,
|
||||
<Super>f,nautilus,,
|
||||
<Super>g:always-run,tmux new-window -n vifm vifm ~/desktop,foot,
|
||||
<Super>return,foot,,
|
||||
<Super>p,keepassxc,,,
|
||||
|
||||
|
|
|
|||
|
|
@ -11,6 +11,7 @@
|
|||
};
|
||||
|
||||
programs.mbsync.enable = true;
|
||||
|
||||
programs.neomutt = {
|
||||
enable = true;
|
||||
vimKeys = true;
|
||||
|
|
@ -45,8 +46,11 @@
|
|||
'';
|
||||
showSignature = "append";
|
||||
};
|
||||
mbsync.enable = true;
|
||||
mbsync.create = "maildir";
|
||||
mbsync = {
|
||||
enable = true;
|
||||
create = "maildir";
|
||||
expunge = "both";
|
||||
};
|
||||
msmtp.enable = true;
|
||||
neomutt = {
|
||||
enable = true;
|
||||
|
|
@ -125,8 +129,11 @@
|
|||
color status green default
|
||||
'';
|
||||
};
|
||||
mbsync.enable = true;
|
||||
mbsync.create = "maildir";
|
||||
mbsync = {
|
||||
enable = true;
|
||||
create = "maildir";
|
||||
expunge = "both";
|
||||
};
|
||||
msmtp = {
|
||||
enable = true;
|
||||
extraConfig.from = "*@(ktiu.net|t9e.me)";
|
||||
|
|
@ -174,8 +181,11 @@
|
|||
color status green default
|
||||
'';
|
||||
};
|
||||
mbsync.enable = true;
|
||||
mbsync.create = "maildir";
|
||||
mbsync = {
|
||||
enable = true;
|
||||
create = "maildir";
|
||||
expunge = "both";
|
||||
};
|
||||
msmtp = {
|
||||
enable = false;
|
||||
# extraConfig.from = "*@ktiu.net";
|
||||
|
|
@ -220,8 +230,11 @@
|
|||
color status cyan default
|
||||
'';
|
||||
};
|
||||
mbsync.enable = true;
|
||||
mbsync.create = "maildir";
|
||||
mbsync = {
|
||||
enable = true;
|
||||
create = "maildir";
|
||||
expunge = "both";
|
||||
};
|
||||
msmtp = {
|
||||
enable = true;
|
||||
extraConfig.from = "kein_schlussstrich_hessen@systemli.org";
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
vim.api.nvim_set_keymap('n', '<leader><tab>', ':Buffers<return>', { noremap = true, silent = true })
|
||||
vim.api.nvim_set_keymap('i', '<c-x><c-f>', '<Plug>(fzf-complete-path)', { silent = true })
|
||||
vim.api.nvim_set_keymap('n', '<leader>o', ':Files<return>', { noremap = true, silent = true })
|
||||
vim.api.nvim_set_keymap('n', '<leader>O', ':Files ~/', { noremap = true, silent = true })
|
||||
vim.api.nvim_set_keymap('n', '<leader>O', ':Files ~/', { noremap = true })
|
||||
vim.api.nvim_set_keymap('n', '<leader>r', ':Read<return>', { noremap = true, silent = true })
|
||||
vim.api.nvim_set_keymap('n', '<leader>R', ':Read ~/', { noremap = true, silent = true })
|
||||
vim.api.nvim_set_keymap('n', '<leader>a', ':Ag<return>', { noremap = true, silent = true })
|
||||
|
|
|
|||
|
|
@ -59,6 +59,12 @@ in
|
|||
identityFile = certs.personal;
|
||||
};
|
||||
|
||||
"github github.com" = {
|
||||
hostname = "github.com";
|
||||
user = "git";
|
||||
identityFile = certs.personal;
|
||||
};
|
||||
|
||||
# "mila" = {
|
||||
# hostname = "mila";
|
||||
# user = "till";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue