Updated deps. Removed autoformatting on save. Changed clipboard to work on Macos

This commit is contained in:
Vasileios Manikas 2025-03-25 15:28:43 +01:00
parent 1a5d8222a8
commit ba93965c08
3 changed files with 41 additions and 35 deletions

View file

@ -20,13 +20,14 @@
-- This is also a good place to setup other settings (vim.opt)
vim.g.mapleader = " "
vim.g.maplocalleader = "\\"
vim.g.autoformat = false
-- Set up option variables
-- vim.opt.rtp:prepend(lazypath)
vim.opt.number = true
vim.opt.relativenumber = true
vim.opt.undofile = true
-- vim.opt.undodir = "undodir"
-- vim.opt.clipboard = 'unnamedplus'
vim.opt.clipboard = ""
vim.opt.ignorecase = true
vim.opt.smartcase = true
vim.opt.tabstop = 4