Cleanup new nvim config

This commit is contained in:
Gabriel Brown
2026-05-19 12:28:26 -05:00
parent 372a0f60e5
commit 4c529afae7
4 changed files with 6 additions and 5 deletions
+5
View File
@@ -1,6 +1,11 @@
-- Options are automatically loaded before lazy.nvim startup
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
-- LazyVim's default syncs clipboard only outside SSH:
-- vim.opt.clipboard = vim.env.SSH_CONNECTION and "" or "unnamedplus"
-- Disabled entirely because wl-clipboard triggers GNOME window spawning on every yank.
-- Use <leader>y/<leader>p for explicit clipboard access.
vim.opt.clipboard = ""
vim.opt.winborder = "rounded"
vim.opt.updatetime = 50
vim.opt.undodir = os.getenv("HOME") .. "/.vim/undodir"