tangled
alpha
login
or
join now
hyl.st
/
helm
2
fork
atom
nix config
2
fork
atom
overview
issues
pulls
pipelines
small fixes
Anish Lakhwara
3 months ago
e5fed2cd
37da206f
+4
-3
2 changed files
expand all
collapse all
unified
split
dns
dnsconfig.js
home
profiles
nvim
default.nix
+2
-1
dns/dnsconfig.js
···
2
2
3
3
var REG_NONE = NewRegistrar('none'); // No registrar.
4
4
var DNS_BIND = NewDnsProvider('bind'); // ISC BIND.
5
5
-
var DNS_HEDNS = NewDnsProvider('hedns');
5
5
+
var DNS_HEDNS = NewDnsProvider('hedns');
6
6
7
7
D("lakhwara.com", REG_NONE,
8
8
DnsProvider(DNS_HEDNS),
···
53
53
MX('@', 10, 'smtp-in-1.nullhex.com.'),
54
54
MX('@', 20, 'smtp-in-2.nullhex.com.'),
55
55
TXT('@', 'v=spf1 a mx ~all'),
56
56
+
TXT('_atproto', 'did=did:plc:exp76a7fe76w25gstz4lww75'),
56
57
SRV('_autodiscover._tcp', 0, 1, 443, 'autodiscover.nullhex.com.'),
57
58
TXT('_dmarc', 'v=DMARC1; p=quarantine;'),
58
59
SRV('_imaps._tcp', 0, 1, 993, 'imap.nullhex.com.'),
+2
-2
home/profiles/nvim/default.nix
···
1022
1022
vim.keymap.set({'n', 't'}, '<M-k>', '<CMD>NavigatorUp<CR>')
1023
1023
vim.keymap.set({'n', 't'}, '<M-l>', '<CMD>NavigatorRight<CR>')
1024
1024
1025
1025
-
-- Disable Ctrl+V in nvim so Kitty can handle paste
1026
1026
-
vim.keymap.set('i', '<C-v>', '<C-r>+', {noremap = true, silent = true})
1025
1025
+
-- Paste from system clipboard in insert mode (handles tmux/kitty better)
1026
1026
+
vim.keymap.set('i', '<C-v>', '<C-r><C-p>+', {noremap = true, silent = true})
1027
1027
1028
1028
-- Pane resizing with Alt+Shift+hjkl (to match tmux)
1029
1029
vim.keymap.set('n', '<M-S-h>', '<Cmd>vertical resize -2<CR>', {silent = true})