Skip to content

Commit

Permalink
Reformat plugins.lua
Browse files Browse the repository at this point in the history
  • Loading branch information
steveno committed Nov 16, 2023
1 parent 6dc7a3f commit 541dd92
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions dot_config/nvim/lua/plugins.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,26 @@
-- Function to install lazy if it's not already installed
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
vim.fn.system({
vim.fn.system({
"git",
"clone",
"--filter=blob:none",
"https://github.com/folke/lazy.nvim.git",
"--branch=stable", -- latest stable release
lazypath,
})
})
end
vim.opt.rtp:prepend(lazypath)

-- Make sure to set `mapleader` before lazy so your mappings are correct
vim.g.mapleader = " "

require("lazy").setup({
"bling/vim-airline",
"bhurlow/vim-parinfer",
{"yorickpeterse/vim-paper", lazy = true},
{"fatih/vim-go", cmd = "GoUpdateBinaries"},
"bling/vim-airline",
"bhurlow/vim-parinfer",
{ "yorickpeterse/vim-paper", lazy = true },
{ "junegunn/fzf", name = "fzf", dir = "~/.fzf", build = "./install --all" },
{ "fatih/vim-go" },
})

------------------------------------------------------
Expand All @@ -36,4 +37,3 @@ vim.cmd([[

vim.g.go_def_mode = "gopls"
vim.g.go_info_mode = "gopls"

0 comments on commit 541dd92

Please sign in to comment.