diff options
author | TJ DeVries <devries.timothyj@gmail.com> | 2022-12-06 21:18:43 -0500 |
---|---|---|
committer | TJ DeVries <devries.timothyj@gmail.com> | 2022-12-06 21:18:43 -0500 |
commit | e3b768619c912ea8f22a054a5ebba8c0bb664b06 (patch) | |
tree | 051ca2ab2d56d9e50e091615cb7688a9f229ae60 | |
parent | ad0fa7daf009f10e23964c25fdffc8245a75ed9d (diff) |
fixup: add gitignore and style
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | init.lua | 6 |
2 files changed, 6 insertions, 2 deletions
@@ -1,2 +1,4 @@ tags test.sh +.luarc.json +nvim @@ -58,8 +58,10 @@ require('packer').startup(function(use) use { 'nvim-telescope/telescope-fzf-native.nvim', run = 'make', cond = vim.fn.executable 'make' == 1 } -- Add custom plugins to packer from /nvim/lua/custom/plugins.lua - local has_plugins, plugins = pcall(require, "custom.plugins") - if has_plugins then plugins(use) end + local has_plugins, plugins = pcall(require, 'custom.plugins') + if has_plugins then + plugins(use) + end if is_bootstrap then require('packer').sync() |