1
0
Fork 0
mirror of https://codeberg.org/Mo8it/dotfiles.git synced 2024-10-17 20:52:40 +00:00
dotfiles/.config/nvim/lua/options.lua
2022-04-23 23:08:24 +02:00

46 lines
683 B
Lua

local opt = vim.o
local cmd = vim.cmd
--
opt.expandtab = true
opt.tabstop = 4
opt.shiftwidth = 4
opt.smartindent = true
opt.number = true
opt.relativenumber = true
opt.ignorecase = true
opt.smartcase = true
opt.gdefault = true
opt.termguicolors = true
opt.wrap = false
opt.whichwrap = "b,s,h,l,<,>,[,]"
opt.clipboard = "unnamedplus"
opt.undofile = true
opt.showmode = false
opt.scrolloff = 3
opt.sidescrolloff = 5
opt.cursorline = true
opt.shell = "/home/mo/.local/bin/xonsh"
opt.confirm = true
opt.linebreak = true
-- Highlight on yank
vim.cmd([[au TextYankPost * silent! lua vim.highlight.on_yank {timeout=1200}]])
-- Disable diagnostics
vim.diagnostic.disable()