auto up 09:41:45 up 1:27, 2 users, load average: 0.31, 0.36, 0.36

This commit is contained in:
2025-11-18 09:41:47 +01:00
parent c4c8ef4893
commit 77dee32c29
3 changed files with 14 additions and 0 deletions

View File

@@ -114,6 +114,8 @@ vim.keymap.set('v', '<leader>p', function()
vim.cmd('normal! "+p')
end, { desc = 'Yank to clipboard and keep the selection' })
vim.keymap.set('n', 'nh', ":noh<CR>")
vim.keymap.set('v', '<leader>y', function()
vim.cmd('normal! "+y')
vim.cmd('normal! gv')

View File

@@ -3,6 +3,12 @@ vim.o.tabstop = 4;
vim.o.number = true;
vim.opt.relativenumber = true
vim.o.ignorecase = true;
--vim.o.guicursor = "n-v-c-sm-i-ci-ve:block";
vim.o.cursorline = true
vim.cmd([[
highlight CursorLine cterm=NONE guibg=#4c3c3c
]])
-- Disable mouse completly
vim.o.mouse = "";

View File

@@ -8,6 +8,12 @@ return {
vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })
end
require("gruvbox").setup({
palette_overrides = {
bright_yellow = "#AD5944"; -- workaround
}
})
vim.cmd.colorscheme("gruvbox")
transparentBackground()