Skip to content

Instantly share code, notes, and snippets.

@r0x0d
Created June 10, 2024 03:07
Show Gist options
  • Save r0x0d/d1d71c5a40d9cd5f8cbe5802a2128046 to your computer and use it in GitHub Desktop.
Save r0x0d/d1d71c5a40d9cd5f8cbe5802a2128046 to your computer and use it in GitHub Desktop.
local opt = vim.opt
opt.number = true
opt.tw = 792034
opt.cc = "80"
opt.background = "dark"
opt.clipboard = "unnamedplus"
opt.expandtab = true
opt.tabstop = 4
opt.shiftwidth = 4
opt.mouse = "a"
opt.guicursor = ""
opt.wrapmargin = 79
-- Enable terminal gui colors
vim.o.termguicolors = true
vim.cmd([[highlight Pmenu guibg=#232627]])
vim.cmd([[ colorscheme vim ]])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment