2022-11-03 11:29:01 +00:00
|
|
|
-- Set vim options
|
|
|
|
require 'options'
|
|
|
|
|
2022-11-02 16:11:38 +00:00
|
|
|
-- Load plugins as defined for Packer
|
2022-11-02 09:12:57 +00:00
|
|
|
require 'plugins'
|
|
|
|
|
2022-11-02 16:11:38 +00:00
|
|
|
-- Define custom keymappings
|
|
|
|
require 'keymaps'
|
2022-11-01 15:26:31 +00:00
|
|
|
|
2022-11-02 16:11:38 +00:00
|
|
|
-- Remaining vim commands to be converted to lua
|
|
|
|
require 'vimcommands'
|
2022-11-30 14:45:22 +00:00
|
|
|
|
|
|
|
-- Neovide specific config, only used if Neovide is runnning
|
|
|
|
if vim.g.neovide then
|
|
|
|
require 'neovide'
|
|
|
|
end
|