Files
neovimrc/lua/timmypidashev/options.lua
T

34 lines
632 B
Lua

local opt = vim.o
-- Indent
opt.tabstop = 2
opt.softtabstop = 2
opt.shiftwidth = 2
opt.expandtab = true
opt.autoindent = true
-- UI
opt.number = true
opt.relativenumber = false
opt.termguicolors = true
opt.laststatus = 3
opt.wrap = false
opt.signcolumn = "yes:1"
opt.numberwidth = 2
opt.fillchars = "eob: " -- hide ~ markers on end-of-buffer lines
-- Search
opt.ignorecase = true
opt.smartcase = true
-- Editing
opt.undofile = true
opt.backupcopy = "yes"
-- Neovide
if vim.g.neovide then
vim.opt.guifont = { "ComicCode Nerd Font", ":h16" }
vim.g.neovide_scale_factor = 1.0
vim.g.neovide_scroll_animation_length = 0.3
end