stuff pog

This commit is contained in:
iris committed 2023-06-03 23:41:40 -04:00
1 parent 79e7cca227
commit 2fba77dc76
5 files changed
+28 -5

No files matched your search

+6 -1
View File
@@ -6,8 +6,13 @@ local j = "e"
local k = "i"
local l = "o"
-- terminal
local m = u.mapping
-- terminal copy paste
m.map("v", "<C-c>", '"+y')
m.map("i", "<C-v>", '<esc>"+p`]a')
-- terminal
m.map("t", "<esc>", "<C-\\><C-n>")
m.map("t", "<tab>", "<tab>")
m.map("t", "<C-"..h..">", "<C-\\><C-n><C-w>h")
-1
View File
@@ -4,7 +4,6 @@ local g = vim.g
-- basic stuff
o.number = true
o.showmode = false
o.clipboard = "unnamedplus"
g.mapleader = " "
g.maplocalleader = ","
+13 -2
View File
@@ -9,11 +9,22 @@ end
hl("ExtraWhitespace", { ctermbg = "red", bg = "#ff8888" })
vim.cmd [[match ExtraWhitespace /\s\+$/]]
local bg = "#201918"
-- make background transparent
-- gbhl("Normal", "none")
-- gbhl("EndOfBuffer", "none")
-- gbhl("SignColumn", "none")
-- gbhl("NeoTreeNormal", "none")
-- gbhl("NeoTreeNormalNC", "none")
-- gbhl("NeoTreeEndOfBuffer", "none")
--[=[
for _, name in ipairs({
"NeoTreeNormal",
"NeoTreeNormalNC",
"MsgArea",
"lualine_a_command",
"lualine_a_inactive",
"lualine_b_inactive",
"lualine_c_inactive",
}) do gbhl(name, bg) end
]=]--