nvim: removed bootstrap bug due to wrong loading order

master
tiyn 2 years ago
parent adef5705a7
commit e15c732825

@ -61,6 +61,9 @@ command = [[%s/\s\+$//e]],
vim.g.python_host_prog = '/usr/bin/python2' vim.g.python_host_prog = '/usr/bin/python2'
vim.g.python3_host_prog = '/usr/bin/python3' vim.g.python3_host_prog = '/usr/bin/python3'
-- load plugins (autoload all files in plugin folder)
require('loadplugins')
-- load filetype specific mappings and commands -- load filetype specific mappings and commands
require('filetype') require('filetype')
@ -69,6 +72,3 @@ require('keymap')
-- load general colorscheme -- load general colorscheme
require('colorscheme') require('colorscheme')
-- load plugins (autoload all files in plugin folder)
require('loadplugins')

Loading…
Cancel
Save