nvim: hybrid line numbers + neovide config

This commit is contained in:
LordMZTE 2022-01-30 13:35:44 +01:00
parent 3c6f62a6d2
commit bbb5db1458
Signed by: LordMZTE
GPG key ID: B64802DC33A64FF6
3 changed files with 9 additions and 1 deletions

View file

@ -1,3 +1,4 @@
require "plugins"
require "settings"
require "maps"
require "neovide"

View file

@ -0,0 +1,5 @@
local g = vim.g
g.neovide_transparency = 0.9
g.neovide_cursor_vfx_mode = "wireframe"

View file

@ -3,12 +3,14 @@ local cmd = vim.cmd
local o = vim.o
local wo = vim.wo
local g = vim.g
local opt = vim.opt
cmd "syntax on"
o.tabstop = 4
o.shiftwidth = 4
o.expandtab = true
wo.number = true
opt.number = true
opt.relativenumber = true
o.guifont = "Iosevka:h10"
o.mouse = "a"
o.termguicolors = true