dotfiles/private_dot_config/nvim/lua/display/editor.lua

11 lines
443 B
Lua

--[[
Loads ui settings for the editor
--]]
vim.opt.relativenumber = true -- display relative number from the line you are
vim.opt.number = true
vim.opt.wrap = false -- do not break word from line to other
vim.opt.emoji = false -- do not display emoji with specific width
-- cursor option
vim.opt.cursorline = true -- display line you are on
vim.opt.cursorcolumn = true -- display column you are on