Refactor nvim structure
This commit is contained in:
parent
2c7f22965b
commit
7db3c9c499
5 changed files with 5 additions and 6 deletions
|
@ -1 +1,4 @@
|
||||||
require("user")
|
require("set")
|
||||||
|
require("remap")
|
||||||
|
|
||||||
|
require("plugins")
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
-- This file can be loaded by calling `lua require('plugins')` from your init.vim
|
-- This file can be loaded by calling `lua require('plugins')` from your init.vim
|
||||||
|
|
||||||
-- Only required if you have packer configured as `opt`
|
-- Only required if you have packer configured as `opt`
|
||||||
vim.cmd.packadd('packer.nvim')
|
vim.cmd [[packadd packer.nvim]]
|
||||||
|
|
||||||
return require('packer').startup(function(use)
|
return require('packer').startup(function(use)
|
||||||
-- Packer can manage itself
|
-- Packer can manage itself
|
|
@ -1,4 +0,0 @@
|
||||||
require("user.packer")
|
|
||||||
|
|
||||||
require("user.set")
|
|
||||||
require("user.remap")
|
|
Loading…
Reference in a new issue