mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-12-12 09:08:21 -05:00
61b5cb5b70
- packer: load vim-eft, nvim-spectre, nvim-dap, persistence.nvim on key press instead of on Vim event - keybindings: redefine multiple, move keybindings for plugins loaded on key press to their configs - plugins: add winshift.nvim, better-escape.nvim, window-picker.nvim, neogen, spellsitter.nvim, nvim-lightbulb, close-buffers.nvim - init.lua: move autocmds back inside async loop (filetype events already got handled by filetype.nvim) - zen-mode.nvim + twilight.nvim: move from 'tools' to 'editor' group - lsp: change signs characters for unification - dap: initial config, keybindings - feline.nvim: reorder elements, add nvim-lightbulb signs - chore: unify the way setup() is called, and format stuff
15 lines
322 B
Lua
15 lines
322 B
Lua
local async
|
|
async = vim.loop.new_async(vim.schedule_wrap(function()
|
|
require('autocmd')
|
|
require('plugins')
|
|
require('mappings')
|
|
async:close()
|
|
end))
|
|
|
|
local options = require('options')
|
|
|
|
options.disable_default_plugins()
|
|
options.load_options()
|
|
require('colors.' .. vim.g.global_theme).highlight()
|
|
async:send()
|