dotfiles/nvim/lua/opts.lua

19 lines
386 B
Lua
Raw Normal View History

2022-08-30 14:14:07 +00:00
vim.cmd [[colorscheme gruvbox]]
2022-09-27 00:15:16 +00:00
vim.opt.wrap = false
vim.opt.number = true
vim.opt.relativenumber = true
vim.opt.splitright = true
vim.opt.splitbelow = true
vim.opt.scrolloff = 10
2022-08-30 14:14:07 +00:00
2022-09-27 00:15:16 +00:00
vim.opt.foldenable = false
2022-09-23 12:11:31 +00:00
vim.api.nvim_set_var('tex_flavor', 'latex')
2022-08-30 14:14:07 +00:00
-- Tab Settings
2022-09-27 00:15:16 +00:00
vim.opt.tabstop = 4
vim.opt.softtabstop = 0
vim.opt.expandtab = true
vim.opt.shiftwidth = 4
vim.opt.smarttab = true