Remove option missing from neovim

This commit is contained in:
Thomas Gideon 2024-06-23 10:34:51 -04:00
parent 23b07f56d9
commit b23fd9b050

View file

@ -88,10 +88,6 @@ vim.opt.directory = os.getenv("HOME") .. "/.var/nvim/swp//"
-- and undo
vim.opt.undofile = true
vim.opt.undodir = os.getenv("HOME") .. "/.nvim/undodir"
if not vim.fn.has('macunix') then
-- make pastemode more accessible
vim.opt.pastetoggle = "<F2>"
end
-- save when moving away
vim.api.nvim_create_autocmd("FocusLost", {pattern = "*", command = "wa"})