1
0
Fork 0

nvim: tabstop 8 to avoid a bug in a plugin; wezterm: some deprecations cleaned up

This commit is contained in:
Von Random 2023-03-21 13:08:40 +02:00
parent 75f8289854
commit d20314a03b
2 changed files with 8 additions and 8 deletions

View file

@ -7,7 +7,7 @@ vim.o.breakindent = true
vim.o.clipboard = 'unnamedplus' vim.o.clipboard = 'unnamedplus'
vim.o.list = true vim.o.list = true
vim.o.listchars = 'tab:==>,nbsp:x,trail:*' vim.o.listchars = 'tab:|_,nbsp:x,trail:*'
vim.o.ignorecase = true vim.o.ignorecase = true
vim.o.smartcase = true vim.o.smartcase = true
@ -15,7 +15,7 @@ vim.o.smartcase = true
vim.o.scrolloff = 3 vim.o.scrolloff = 3
vim.o.sidescrolloff = 15 vim.o.sidescrolloff = 15
vim.o.tabstop = 3 vim.o.tabstop = 8
vim.o.softtabstop = 4 vim.o.softtabstop = 4
vim.o.shiftwidth = 4 vim.o.shiftwidth = 4
vim.o.expandtab = true vim.o.expandtab = true

View file

@ -36,8 +36,8 @@ local custom_colors = {
local leader_key = { key = 'g', mods = 'CTRL', timeout_milliseconds = 1000 } local leader_key = { key = 'g', mods = 'CTRL', timeout_milliseconds = 1000 }
local keybinds = { local keybinds = {
{ key = 'c', mods = 'META', action = act.Copy }, { key = 'c', mods = 'META', action = act.CopyTo('Clipboard') },
{ key = 'v', mods = 'META', action = act.Paste }, { key = 'v', mods = 'META', action = act.PasteFrom('Clipboard') },
-- themes -- themes
{ key = 'f', mods = 'LEADER', action = act.EmitEvent('override-fonts') }, { key = 'f', mods = 'LEADER', action = act.EmitEvent('override-fonts') },
{ key = 't', mods = 'LEADER', action = act.EmitEvent('override-theme') }, { key = 't', mods = 'LEADER', action = act.EmitEvent('override-theme') },