aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/init.lua
blob: 8fdca68aca84fcdb941c13c346fa6a039a8fd727 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
local lazypath = vim.fn.stdpath "data" .. "/lazy/lazy.nvim"
vim.opt.rtp:prepend(lazypath)

require "options"
require "cmds"
require "autocmd"
require "binds"
require "diagnostics"
require("lazy").setup {
    spec = "plugins",
    dev = {
        path = vim.fn.stdpath "config" .. "/lua/local_plugins",
    },
    ui = {
        border = "rounded",
        backdrop = 100,
    },
}
vim.cmd [[colo prismite]]