Added nvim plugins oil, codeium

This commit is contained in:
Luka Jankovic 2025-01-06 01:22:29 +01:00
parent 0709e96515
commit 18d295b5ad
6 changed files with 156 additions and 119 deletions

View file

@ -3,3 +3,6 @@ vim.api.nvim_set_keymap('n', '<C-h>', '<C-w>h', { noremap = true, silent = true
vim.api.nvim_set_keymap('n', '<C-j>', '<C-w>j', { noremap = true, silent = true })
vim.api.nvim_set_keymap('n', '<C-k>', '<C-w>k', { noremap = true, silent = true })
vim.api.nvim_set_keymap('n', '<C-l>', '<C-w>l', { noremap = true, silent = true })
-- Clear Highlights
vim.api.nvim_set_keymap('n', '<Esc>', ':noh<CR>', { noremap = true, silent = true })

View file

@ -14,9 +14,9 @@ vim.o.clipboard = "unnamedplus"
local restore_cursor_augroup = vim.api.nvim_create_augroup("restore_cursor_shape_on_exit", { clear = true })
vim.api.nvim_create_autocmd({ "VimLeave" }, {
group = restore_cursor_augroup,
desc = "restore the cursor shape on exit of neovim",
command = "set guicursor=a:ver20",
group = restore_cursor_augroup,
desc = "restore the cursor shape on exit of neovim",
command = "set guicursor=a:ver20",
})
-- Horizontal Split Line
@ -27,3 +27,6 @@ vim.opt.scrolloff = 5
-- Highlight current line
vim.opt.cursorline = true
-- Set signcolumn to prevent lsp flickering
vim.opt.signcolumn = "yes"