updates
This commit is contained in:
@@ -855,6 +855,8 @@ vim.o.listchars = "tab:→ ,trail:·,extends:↷,precedes:↶,nbsp:+,eol:↵"
|
||||
vim.o.list = true -- Show listchars
|
||||
|
||||
-- search
|
||||
vim.opt.smartcase = false
|
||||
vim.opt.ignorecase = false
|
||||
vim.opt.wildmode = { "full" } -- Command-line completion mode
|
||||
vim.opt.wildignore = vim.opt.wildignore
|
||||
+ { "*swp", "*.class", "*.pyc", "*.png", "*.jpg", "*.gif", "*.zip", "*/tmp/*", "*.o", ".obj", "*.so" }
|
||||
|
||||
@@ -25,6 +25,8 @@ config.bind("tm", "tab-move")
|
||||
config.bind("to", "tab-focus")
|
||||
config.bind("ø", "cmd-set-text :")
|
||||
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("M", mode="normal") # add bookmark
|
||||
config.unbind("gb", mode="normal") # load bookmark
|
||||
|
||||
+2
-1
@@ -2,7 +2,7 @@
|
||||
local wezterm = require("wezterm")
|
||||
local config = wezterm.config_builder()
|
||||
local act = wezterm.action
|
||||
config.color_scheme = 'Monokai (dark) (terminal.sexy)'
|
||||
config.color_scheme = "Monokai (dark) (terminal.sexy)"
|
||||
config.font_size = 14
|
||||
-- config.font = wezterm.font("Noto Sans Mono")
|
||||
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.default_cursor_style = "BlinkingBar"
|
||||
config.disable_default_key_bindings = true
|
||||
config.window_padding = { left = 0, right = 0, top = 0, bottom = 0 }
|
||||
|
||||
config.keys = {
|
||||
-- font size
|
||||
|
||||
Reference in New Issue
Block a user