diff --git a/init.lua b/init.lua index bd61aaf..c51044a 100644 --- a/init.lua +++ b/init.lua @@ -1,11 +1,14 @@ +-- River Rooks nvim config +-- init.lua +-- render options, keybinds, lazy and treesitter +-- processed first + -- render options require('options') - -- render keybinds require('keybinds') - --- [[scripts]] -- Bootstrap lazy.nvim +-- local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" if not (vim.uv or vim.loop).fs_stat(lazypath) then local lazyrepo = "https://github.com/folke/lazy.nvim.git" @@ -21,7 +24,6 @@ if not (vim.uv or vim.loop).fs_stat(lazypath) then end end vim.opt.rtp:prepend(lazypath) - -- Make sure to setup `mapleader` and `maplocalleader` before -- loading lazy.nvim so that mappings are correct. -- This is also a good place to setup other settings (vim.opt) diff --git a/keybinds.lua b/lua/keybinds.lua similarity index 100% rename from keybinds.lua rename to lua/keybinds.lua diff --git a/options.lua b/lua/options.lua similarity index 100% rename from options.lua rename to lua/options.lua