diff --git a/lua/binds.lua b/lua/binds.lua index 291bfb8..49ee43c 100644 --- a/lua/binds.lua +++ b/lua/binds.lua @@ -2,7 +2,7 @@ -- Configuration Tools -- local ct = require('conftool') -local defs = require('defs') +-- local defs = require('defs') -- -- Maps @@ -54,26 +54,27 @@ for func_name, _ in pairs(lsp_buf) do end end -function toggle_background() - local bg = vim.o.background +-- function toggle_background() +-- local bg = vim.o.background +-- +-- if bg == "dark" then +-- vim.cmd("set background=light") +-- else +-- vim.cmd("set background=dark") +-- end +-- +-- -- Query the current colorscheme +-- --[[ local colorscheme = vim.fn.executable('colorscheme') or "" +-- -- colorscheme = colorscheme:match("^%s*(.-)%s*$") +-- +-- -- Reload the colorscheme if it was set +-- if colorscheme ~= "" then +-- vim.cmd("colorscheme " .. colorscheme) +-- end ]]-- +-- end +-- ct.map('n', 'c', 'lua toggle_background()') - if bg == "dark" then - vim.cmd("set background=light") - else - vim.cmd("set background=dark") - end - - -- Query the current colorscheme - --[[ local colorscheme = vim.fn.executable('colorscheme') or "" - -- colorscheme = colorscheme:match("^%s*(.-)%s*$") - - -- Reload the colorscheme if it was set - if colorscheme ~= "" then - vim.cmd("colorscheme " .. colorscheme) - end ]]-- -end - -ct.map('n', 'b', 'lua toggle_background()') +ct.map('n', 'b', ':buffer') -- -- Commands --