85342ba955
Restructure ready for adding additional config files
17 lines
324 B
Lua
17 lines
324 B
Lua
-- Set vim options
|
|
require 'options'
|
|
|
|
-- Load plugins as defined for Packer
|
|
require 'plugins'
|
|
|
|
-- Define custom keymappings
|
|
require 'keymaps'
|
|
|
|
-- Remaining vim commands to be converted to lua
|
|
require 'vimcommands'
|
|
|
|
-- Neovide specific config, only used if Neovide is runnning
|
|
if vim.g.neovide then
|
|
require 'neovide'
|
|
end
|