move the calls to the bottom

This commit is here to put the calls after everything such that
the user config is always on top of the default one.
This commit is contained in:
amtoine 2023-04-04 18:51:58 +02:00
parent 8a7c2e99d7
commit 0a172a3fef
No known key found for this signature in database
GPG Key ID: 37AAE9B486CFF1AB
1 changed files with 2 additions and 2 deletions

View File

@ -233,7 +233,6 @@ vim.o.termguicolors = true
-- NOTE: you can add any custom options in the `lua/custom/options.lua`
-- file to avoid any conflict with this file if you're interested in keeping
-- up-to-date with whatever is in the kickstart repo.
pcall(require, 'custom/options')
-- [[ Basic Keymaps ]]
@ -248,7 +247,6 @@ vim.keymap.set('n', 'j', "v:count == 0 ? 'gj' : 'j'", { expr = true, silent = tr
-- NOTE: you can add any custom keybinding in the `lua/custom/keybindings.lua`
-- file to avoid any conflict with this file if you're interested in keeping
-- up-to-date with whatever is in the kickstart repo.
pcall(require, 'custom/keybindings')
-- [[ Highlight on yank ]]
-- See `:help vim.highlight.on_yank()`
@ -509,4 +507,6 @@ cmp.setup {
-- NOTE: you can add any custom `vim` command in the `lua/custom/commands.lua`
-- file to avoid any conflict with this file if you're interested in keeping
-- up-to-date with whatever is in the kickstart repo.
pcall(require, 'custom/options')
pcall(require, 'custom/keybindings')
pcall(require, 'custom/commands')