dotfiles/.config/nvim/lua/null/config.lua
Ahmad Ansori Palembani f7c5370f5b
chore(nvim): Some clean up
- Start splitting plugins to their own files
- Config should be loaded first
- Config for plugins should be handled by lazy.nvim
2024-04-18 09:28:33 +07:00

10 lines
151 B
Lua

require("null.remap")
local o = vim.opt
local g = vim.g
o.nu = true
o.relativenumber = true
g.mapleader = " "
g.guifont = { "Sarasa UI J", ":h16" }