neovim-config/init.lua

45 lines
1.1 KiB
Lua

----------------------------------------
-- --
-- init.lua --
-- --
----------------------------------------
--
-- Packer, a use-package like package manager
--
-- Bootstrap
local fn = vim.fn
local install_path = fn.stdpath('data')..'/site/pack/packer/start/packer.nvim'
if fn.empty(fn.glob(install_path)) > 0 then
Packer_bootstrap = fn.system({
'git', 'clone', '--depth', '1',
'https://github.com/wbthomason/packer.nvim',
install_path
})
end
local packer = require 'packer'
packer.reset()
packer.init()
local pk_use = packer.use
pk_use 'wbthomason/packer.nvim'
if Packer_bootstrap then
packer.sync()
end
-- Leader key
vim.g.mapleader = ' '
vim.g.maplocalleader = ' '
--
-- Load other files
--
require 'ide' -- Tree Sitter Settings
require 'ui' -- User Interface
require 'defs' -- Default files/folders
require 'binds' -- Keybindings and commands
require 'misc'