This commit is contained in:
Henrik Bakken
2024-09-18 11:25:33 +02:00
parent 88a97e03a6
commit b45ce32383
4 changed files with 13 additions and 6 deletions
+4
View File
@@ -0,0 +1,4 @@
vim.o.colorcolumn = "100"
vim.opt.tabstop = 2
vim.opt.shiftwidth = 2
vim.opt.softtabstop = 2
-1
View File
@@ -784,7 +784,6 @@ require("lazy").setup({
"lua_ls", -- lua "lua_ls", -- lua
"marksman", -- markdown "marksman", -- markdown
"pyright", -- python "pyright", -- python
"tsserver", -- typescript
"yamlls", -- yaml "yamlls", -- yaml
}, },
}) })
+5 -2
View File
@@ -20,8 +20,9 @@ settings:
<Ctrl+v>: null <Ctrl+v>: null
<F10>: config-cycle colors.webpage.darkmode.enabled true false ;; restart <F10>: config-cycle colors.webpage.darkmode.enabled true false ;; restart
<F11>: config-cycle tabs.position top left <F11>: config-cycle tabs.position top left
<F12>: view-source <F12>: devtools
<Shift+Escape>: mode-enter passthrough <Shift+Escape>: mode-enter passthrough
<Shift+F12>: view-source
'>': tab-move + '>': tab-move +
D: tab-close D: tab-close
J: tab-prev J: tab-prev
@@ -47,7 +48,9 @@ settings:
global: access-paste global: access-paste
content.register_protocol_handler: content.register_protocol_handler:
https://calendar.google.com?cid=%25s: true https://calendar.google.com?cid=%25s: true
session.default_name:
global: hb
tabs.mode_on_change: tabs.mode_on_change:
global: restore global: restore
tabs.position: tabs.position:
global: top global: left
+4 -3
View File
@@ -16,12 +16,13 @@ config.bind("<Ctrl-r>", "restart", mode="normal")
config.bind("<Ctrl-h>", "history") config.bind("<Ctrl-h>", "history")
config.bind("<F10>", "config-cycle colors.webpage.darkmode.enabled true false ;; restart") config.bind("<F10>", "config-cycle colors.webpage.darkmode.enabled true false ;; restart")
config.bind("<F11>", "config-cycle tabs.position top left") config.bind("<F11>", "config-cycle tabs.position top left")
config.bind("<F12>", "view-source") config.bind("<F12>", "devtools")
config.bind("<Shift+F12>", "view-source")
config.bind("<Shift+Escape>", "mode-enter passthrough", mode="normal") config.bind("<Shift+Escape>", "mode-enter passthrough", mode="normal")
config.bind("<Shift+Escape>", "mode-enter passthrough", mode="insert") config.bind("<Shift+Escape>", "mode-enter passthrough", mode="insert")
config.bind(">", "tab-move +") config.bind(">", "tab-move +")
config.bind("J", "tab-prev") config.bind("K", "tab-prev")
config.bind("K", "tab-next") config.bind("J", "tab-next")
config.bind("pw", "spawn --userscript qute-bitwarden") config.bind("pw", "spawn --userscript qute-bitwarden")
config.bind("tm", "tab-move") config.bind("tm", "tab-move")
config.bind("to", "tab-focus") config.bind("to", "tab-focus")