-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.lua
More file actions
27 lines (22 loc) · 684 Bytes
/
init.lua
File metadata and controls
27 lines (22 loc) · 684 Bytes
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
require 'options'
require 'mappings'
require 'commands'
-- bootstrap plugins & lazy.nvim
local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim' -- path where its going to be installed
if not vim.loop.fs_stat(lazypath) then
vim.fn.system {
'git',
'clone',
'--filter=blob:none',
'https://github.com/folke/lazy.nvim.git',
'--branch=stable',
lazypath,
}
end
vim.opt.rtp:prepend(lazypath)
require 'plugins'
require('highlight_yank').setup()
vim.cmd 'colorscheme astrodark'
-- vim.api.nvim_set_hl(0, 'Character', { fg = '#f5983a', ctermfg = 'green' })
vim.cmd 'highlight Character ctermfg=green guifg=#f5983a'
-- vim.cmd 'colorscheme gruvbox-material'