mirror of
https://github.com/jdhao/nvim-config.git
synced 2025-06-08 14:14:33 +02:00
commit
5dbe643ea2
@ -1,7 +1,7 @@
|
|||||||
scriptencoding utf-8
|
scriptencoding utf-8
|
||||||
|
|
||||||
" Plugin specification and lua stuff
|
" Plugin specification and lua stuff
|
||||||
lua require('lua-init')
|
lua require('plugins')
|
||||||
|
|
||||||
" Use short names for common plugin manager commands to simplify typing.
|
" Use short names for common plugin manager commands to simplify typing.
|
||||||
" To use these shortcuts: first activate command line with `:`, then input the
|
" To use these shortcuts: first activate command line with `:`, then input the
|
||||||
|
|||||||
12
init.lua
12
init.lua
@ -21,12 +21,12 @@ if nvim_ver ~= expected_ver then
|
|||||||
end
|
end
|
||||||
|
|
||||||
local core_conf_files = {
|
local core_conf_files = {
|
||||||
"globals.vim",
|
"globals.vim", -- some global settings
|
||||||
"options.vim",
|
"options.vim", -- setting options in nvim
|
||||||
"autocommands.vim",
|
"autocommands.vim", -- various autocommands
|
||||||
"mappings.vim",
|
"mappings.vim", -- all the user-defined mappings
|
||||||
"plugins.vim",
|
"plugins.vim", -- all the plugins installed and their configurations
|
||||||
"themes.lua",
|
"colorschemes.lua", -- colorscheme settings
|
||||||
}
|
}
|
||||||
|
|
||||||
-- source all the core config files
|
-- source all the core config files
|
||||||
|
|||||||
@ -1,5 +0,0 @@
|
|||||||
-- Some utility stuff
|
|
||||||
require 'utils'
|
|
||||||
|
|
||||||
-- plugin installation
|
|
||||||
require 'plugins'
|
|
||||||
Loading…
x
Reference in New Issue
Block a user