kickstart.nvim/lua/custom/plugins/init.lua

12 lines
324 B
Lua
Raw Normal View History

-- You can add your own plugins here or in other files in this directory!
-- I promise not to create any merge conflicts in this directory :)
--
-- See the kickstart.nvim README for more information
2024-05-29 23:35:32 +03:00
vim.opt.relativenumber = true
2024-05-30 16:19:17 +03:00
vim.g.have_nerd_font = true
2024-05-29 23:35:32 +03:00
require 'custom.mappings'
require 'custom.tabulation'
2024-05-30 16:19:17 +03:00
return {}