mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-11-14 06:36:27 +00:00
70c31d66eb
Make Packer lazy loaded and move lsp config into plugin rather than from packer
29 lines
859 B
Lua
29 lines
859 B
Lua
local o = vim.o
|
|
|
|
-- Helpers
|
|
require "_settings"
|
|
require "_bindings"
|
|
require "_colors"
|
|
|
|
-- Create commands
|
|
vim.cmd "command! TagsUpdate !ctags -R ."
|
|
vim.cmd "command! Todo grep TODO"
|
|
|
|
-- Use better grep programs
|
|
if vim.fn.executable("rg") == 1 then
|
|
o.grepprg = "rg --vimgrep --no-heading --color=never"
|
|
o.grepformat = "%f:%l:%c:%m,%f:%l:%m"
|
|
elseif vim.fn.executable("ag") == 1 then
|
|
o.grepprg = "ag --vimgrep --nogroup --nocolor"
|
|
elseif vim.fn.executable("ack") == 1 then
|
|
o.grepprg = "ack"
|
|
end
|
|
|
|
-- Disable polyglot for langauges I've added special support for
|
|
vim.g.polyglot_disabled = { "go", "rust" }
|
|
|
|
-- Plugins
|
|
-- Packer auto installs and then lazy loads itself on PackerCommand and require the plugins module
|
|
-- This command should only really be needed to bootstrap a new system
|
|
vim.cmd [[command! PackerBootstrap lua require("plugins")]]
|