diff options
| author | Alec Goncharow <alec@goncharow.dev> | 2024-03-27 23:51:05 -0400 |
|---|---|---|
| committer | Alec Goncharow <alec@goncharow.dev> | 2024-03-27 23:51:50 -0400 |
| commit | a9c559f9fc070985db26e820f352395d75569eb8 (patch) | |
| tree | 565c4c21c3fbd0147166a5d3195d70b085168789 /.config/nvim/init.lua | |
| parent | e4c0895320d09ab7238e91aefc4e7112ba577a72 (diff) | |
lazy, neorg, and oil
apparently packer is abandoned, neorg told me to use lazy
neorg is so cool actually
vim-vinegar walked so that oil could fly
Diffstat (limited to '.config/nvim/init.lua')
| -rw-r--r-- | .config/nvim/init.lua | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua index d9b5cc6..a02b752 100644 --- a/.config/nvim/init.lua +++ b/.config/nvim/init.lua @@ -1,3 +1,16 @@ +local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" +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", -- latest stable release + lazypath, + }) +end +vim.opt.rtp:prepend(lazypath) + require('plugins') require('settings') require('mappings') @@ -15,6 +28,8 @@ require('bqf_conf') require('autosession_conf') require('autoclose_conf') require('buffers') +require('oil_conf') +require('neorg_conf') -- note taking if vim.g.neovide then require('neovide_conf') |
