-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.lua
37 lines (32 loc) · 1.1 KB
/
init.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
--[[
_________
/ ======= \
/ __________\
Yusuf's | ___________ | free pal3stine!
Neovim Config | | - | |
| | | |
| |_________| |
\=____________/
/ """"""""""" \ distant cousin
/ ::::::::::::: \ of kickstart.nvim
(_________________)
--]]
require 'settings'
require 'mappings'
require 'autocmds'
-- Installing the Lazy.nvim™ Package Manager
local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim'
if not vim.loop.fs_stat(lazypath) then
local lazyrepo = 'https://github.com/folke/lazy.nvim.git'
vim.fn.system { 'git', 'clone', '--filter=blob:none', '--branch=stable', lazyrepo, lazypath }
end
vim.opt.rtp:prepend(lazypath)
-- this reads files in ./lua/plugins/*.lua
-- and merges them into the main plugin spec
-- to add a new plugin create a new file in lua/plugins/
require('lazy').setup('plugins', {
change_detection = {
enabled = false,
},
})
-- vim: ts=2 sts=2 sw=2 et