added nvchad's config file

it need to be simlinked into the nvchad at
.config/nvim/lua/custom/chadrc.lua
This commit is contained in:
Djeeberjr 2023-05-05 15:28:37 +02:00
parent 03535234ca
commit 2dc054c0a9

20
.config/chadrc.lua Normal file
View File

@ -0,0 +1,20 @@
---@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