Skip to content

Commit

Permalink
fixup: add gitignore and style
Browse files Browse the repository at this point in the history
  • Loading branch information
tjdevries committed Dec 7, 2022
1 parent ad0fa7d commit e3b7686
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
tags
test.sh
.luarc.json
nvim
6 changes: 4 additions & 2 deletions init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit e3b7686

Please sign in to comment.