merge please

This commit is contained in:
cmccay 2023-03-22 21:41:50 -05:00
parent b040b7fc1c
commit 85d01961d8
4 changed files with 8 additions and 4 deletions

View File

@ -2,7 +2,7 @@ window:
opacity: 1.0 opacity: 1.0
font: font:
size: 14 size: 9
normal: normal:
family: FiraCode Nerd Font family: FiraCode Nerd Font
style: Regular style: Regular

View File

@ -23,3 +23,6 @@ keymap('v', '<Leader>-', '<C-v>klx<Esc>', default_ops)
-- Indenting -- Indenting
keymap('v', '<', '<gv', default_ops) keymap('v', '<', '<gv', default_ops)
keymap('v', '>', '>gv', default_ops) keymap('v', '>', '>gv', default_ops)
-- Toggle Term REPL stuff
keymap('n', '<Leader>x', 'ToggleTermSendCurrentLine<CR>', default_ops)

View File

@ -1,7 +1,8 @@
-- general theme -- general theme
vim.cmd("colorscheme kanagawa") -- vim.opt.termguicolors = true
-- vim.cmd.colorscheme 'ayu'
-- -- ignore background color for transparency -- ignore background color for transparency
-- vim.cmd("highlight Normal guibg=none") -- vim.cmd("highlight Normal guibg=none")
-- vim.cmd("highlight NonText guibg=none") -- vim.cmd("highlight NonText guibg=none")
-- vim.cmd("highlight Normal ctermbg=none") -- vim.cmd("highlight Normal ctermbg=none")

View File

@ -139,7 +139,7 @@ return {
version = "*", version = "*",
config = { config = {
open_mapping = [[<c-\>]], open_mapping = [[<c-\>]],
-- direction = 'float' direction = 'horizontal'
} }
}, },