This commit is contained in:
Henrik Bakken
2024-01-03 22:50:20 +01:00
parent d2047cf642
commit 6f0637abfe
3 changed files with 6 additions and 1 deletions
+2
View File
@@ -855,6 +855,8 @@ vim.o.listchars = "tab:→ ,trail:·,extends:↷,precedes:↶,nbsp:+,eol:↵"
vim.o.list = true -- Show listchars vim.o.list = true -- Show listchars
-- search -- search
vim.opt.smartcase = false
vim.opt.ignorecase = false
vim.opt.wildmode = { "full" } -- Command-line completion mode vim.opt.wildmode = { "full" } -- Command-line completion mode
vim.opt.wildignore = vim.opt.wildignore vim.opt.wildignore = vim.opt.wildignore
+ { "*swp", "*.class", "*.pyc", "*.png", "*.jpg", "*.gif", "*.zip", "*/tmp/*", "*.o", ".obj", "*.so" } + { "*swp", "*.class", "*.pyc", "*.png", "*.jpg", "*.gif", "*.zip", "*/tmp/*", "*.o", ".obj", "*.so" }
+2
View File
@@ -25,6 +25,8 @@ config.bind("tm", "tab-move")
config.bind("to", "tab-focus") config.bind("to", "tab-focus")
config.bind("ø", "cmd-set-text :") config.bind("ø", "cmd-set-text :")
config.bind("m", 'cmd-set-text :quickmark-add {url:pretty} "{date} {title}"', mode="normal") config.bind("m", 'cmd-set-text :quickmark-add {url:pretty} "{date} {title}"', mode="normal")
config.bind("D", "tab-close")
config.unbind("d", mode="normal") # delete tab
config.unbind("q", mode="normal") # macro recording config.unbind("q", mode="normal") # macro recording
config.unbind("M", mode="normal") # add bookmark config.unbind("M", mode="normal") # add bookmark
config.unbind("gb", mode="normal") # load bookmark config.unbind("gb", mode="normal") # load bookmark
+2 -1
View File
@@ -2,7 +2,7 @@
local wezterm = require("wezterm") local wezterm = require("wezterm")
local config = wezterm.config_builder() local config = wezterm.config_builder()
local act = wezterm.action local act = wezterm.action
config.color_scheme = 'Monokai (dark) (terminal.sexy)' config.color_scheme = "Monokai (dark) (terminal.sexy)"
config.font_size = 14 config.font_size = 14
-- config.font = wezterm.font("Noto Sans Mono") -- config.font = wezterm.font("Noto Sans Mono")
config.font = wezterm.font_with_fallback({ config.font = wezterm.font_with_fallback({
@@ -15,6 +15,7 @@ config.use_fancy_tab_bar = false
config.hide_tab_bar_if_only_one_tab = true config.hide_tab_bar_if_only_one_tab = true
config.default_cursor_style = "BlinkingBar" config.default_cursor_style = "BlinkingBar"
config.disable_default_key_bindings = true config.disable_default_key_bindings = true
config.window_padding = { left = 0, right = 0, top = 0, bottom = 0 }
config.keys = { config.keys = {
-- font size -- font size