dotfiles-remastered/.config/chadrc.lua
Djeeberjr 2dc054c0a9 added nvchad's config file
it need to be simlinked into the nvchad at
.config/nvim/lua/custom/chadrc.lua
2023-05-05 15:28:37 +02:00

21 lines
330 B
Lua

---@type ChadrcConfig
local M = {}
M.ui = {
theme = 'vscode_dark',
transparency = true
}
-- Reset curser
vim.api.nvim_create_autocmd({"VimLeave"}, {
pattern = {"*"},
callback = function()
vim.o.guicursor = "a:ver1-blinkon0"
end
})
-- Enable strg + shift + c clipboard
vim.o.clipboard = "unnamedplus"
return M