1
0

neovim changes

This commit is contained in:
2025-01-25 22:22:13 +01:00
parent 4c1db847d5
commit 565cbf064a
14 changed files with 253 additions and 199 deletions

View File

@@ -17,7 +17,7 @@ vim.g.mapleader = ' '
-- Terminal
vim.g.termguicolors = true
vim.g.terminal_emulator = 'kitty'
vim.opt.shell = '/bin/fish'
-- LSP
vim.lsp.inlay_hint.enable()
@@ -39,6 +39,11 @@ vim.api.nvim_create_autocmd('FileType', {
command = 'setlocal linebreak',
})
vim.cmd.cnoreabbrev('grep', 'Grepper')
-- Search
vim.opt.hlsearch = false
vim.opt.incsearch = true
-- Make dotfile navigation bareble
vim.api.nvim_create_user_command('Dot', 'edit ~/.config/nvim', {})