radiant.nvim/lua/core/options.lua
Muhammad Nauman Raza 120ccab1d0
hotfix: conceallevel 3
Fixes concealing of characters in Neorg
2024-02-07 18:21:09 +00:00

55 lines
920 B
Lua

-- Shorten name
local o = vim.opt
-- Clipboard
o.clipboard = "unnamedplus"
-- Completion improvement
o.updatetime = 300
-- Indentation
o.smartindent = true
o.expandtab = true
o.showtabline = 2
o.shiftwidth = 2
o.tabstop = 2
-- General improvements
o.fileencoding = "utf-8"
o.hlsearch = true
o.ignorecase = true
o.mouse = "a"
o.pumheight = 10
o.showmode = false
o.smartcase = true
o.splitbelow = true
o.splitright = true
o.timeoutlen = 1000
o.conceallevel = 3
o.undofile = true
o.cursorline = true
o.number = true
o.numberwidth = 4
o.relativenumber = true
o.signcolumn = "yes"
o.termguicolors = true
o.autochdir = true
-- Fix rendering of ASCII
o.linespace = -1
-- Do not wrap lines
o.wrap = false
-- Disable backups and swapfile
o.backup = false
o.swapfile = false
-- Font
o.guifont = "Iosevka Comfy:h10.5"
-- Colorscheme
vim.cmd("colorscheme kagayaki")
-- Neovide transparency
vim.g.neovide_transparency = 0.9