diff options
Diffstat (limited to 'nvim/init.lua')
-rw-r--r-- | nvim/init.lua | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/nvim/init.lua b/nvim/init.lua new file mode 100644 index 0000000..b32a682 --- /dev/null +++ b/nvim/init.lua @@ -0,0 +1,33 @@ +-- Bootstrap lazy.nvim +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", + lazypath, + }) +end +vim.opt.rtp:prepend(lazypath) + +vim.g.mapleader = " " +vim.g.maplocalleader = " " + +require("core.options") +require("core.keymaps") +require("core.statusline").setup() +require("core.autocmds") +require("lazy").setup("plugins") + +--[[-- TODO: --]] +-- gennaro-tedesco/nvim-commaround (comments) +-- kylechui/nvim-surround (surround vim) +-- "tpope/vim-fugitive" +-- iamcco/markdown-preview.nvim + +-- s1n7ax/nvim-terminal +--"https://github.com/rmagatti/goto-preview +--"https://github.com/SmiteshP/nvim-navbuddy +-- look into harpoon? |