From 2dc054c0a913d53243e7c0885c7863fbb902581c Mon Sep 17 00:00:00 2001 From: Djeeberjr Date: Fri, 5 May 2023 15:28:37 +0200 Subject: [PATCH] added nvchad's config file it need to be simlinked into the nvchad at .config/nvim/lua/custom/chadrc.lua --- .config/chadrc.lua | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .config/chadrc.lua diff --git a/.config/chadrc.lua b/.config/chadrc.lua new file mode 100644 index 0000000..7581d8b --- /dev/null +++ b/.config/chadrc.lua @@ -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 +