We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad0fa7d commit e3b7686Copy full SHA for e3b7686
.gitignore
@@ -1,2 +1,4 @@
1
tags
2
test.sh
3
+.luarc.json
4
+nvim
init.lua
@@ -58,8 +58,10 @@ require('packer').startup(function(use)
58
use { 'nvim-telescope/telescope-fzf-native.nvim', run = 'make', cond = vim.fn.executable 'make' == 1 }
59
60
-- Add custom plugins to packer from /nvim/lua/custom/plugins.lua
61
- local has_plugins, plugins = pcall(require, "custom.plugins")
62
- if has_plugins then plugins(use) end
+ local has_plugins, plugins = pcall(require, 'custom.plugins')
+ if has_plugins then
63
+ plugins(use)
64
+ end
65
66
if is_bootstrap then
67
require('packer').sync()
0 commit comments