feat: tidying up nvim configs

This commit is contained in:
2025-07-27 21:42:46 +01:00
parent a60263aa78
commit fd4887d53d
3 changed files with 26 additions and 38 deletions

View File

@@ -1,18 +1,12 @@
-- Leader
vim.g.mapleader = " "
-- Guard (Linters + Formatters)
-- vim.g.guard_config = {
-- fmt_on_save = true,
-- lsp_as_default_formatter = true,
-- save_on_fmt = true,
-- }
-- Sync system clipboard and neovim register
vim.opt.clipboard = { "unnamedplus" }
-- Save undo history
vim.opt.undofile = true
--
-- Case-insensitive searching UNLESS \C or one or more capital letters in the search term
vim.opt.ignorecase = true