Skip to content

Commit e3b7686

Browse files
committed
fixup: add gitignore and style
1 parent ad0fa7d commit e3b7686

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
tags
22
test.sh
3+
.luarc.json
4+
nvim

init.lua

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,10 @@ require('packer').startup(function(use)
5858
use { 'nvim-telescope/telescope-fzf-native.nvim', run = 'make', cond = vim.fn.executable 'make' == 1 }
5959

6060
-- 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
61+
local has_plugins, plugins = pcall(require, 'custom.plugins')
62+
if has_plugins then
63+
plugins(use)
64+
end
6365

6466
if is_bootstrap then
6567
require('packer').sync()

0 commit comments

Comments
 (0)