fix dumb tmux conf

This commit is contained in:
eneller
2022-09-24 14:42:47 +02:00
parent 8eaa3653a3
commit 9e6a502eff
10 changed files with 275 additions and 96 deletions

View File

@@ -1,6 +1,16 @@
require("plugins")
require("keybinds")
-- GENERAL SETTINGS
--- Functional wrapper for mapping custom keybindings
--- GENERAL SETTINGS
function map(mode, lhs, rhs, opts)
local options = { noremap = true }
if opts then
options = vim.tbl_extend("force", options, opts)
end
vim.api.nvim_set_keymap(mode, lhs, rhs, options)
end
map("i","<C-c>","<Esc>")
vim.o.termguicolors = true
vim.cmd('colorscheme monokai') -- set colorscheme
vim.o.syntax = 'on'