opt -> opts, ty folke part 2

pull/178/head
TJ DeVries 1 year ago
parent 33469ef03d
commit d8784b62db

@ -83,7 +83,7 @@ require('lazy').setup({
'williamboman/mason-lspconfig.nvim',
-- Useful status updates for LSP
-- NOTE: `opt = {}` is the same as calling `require('fidget').setup({})`
-- NOTE: `opts = {}` is the same as calling `require('fidget').setup({})`
{ 'j-hui/fidget.nvim', opts = {} },
-- Additional lua configuration, makes nvim stuff amazing!
@ -97,10 +97,10 @@ require('lazy').setup({
},
-- Useful plugin to show you pending keybinds.
{ 'folke/which-key.nvim', opt = {} },
{ 'folke/which-key.nvim', opts = {} },
{ -- Adds git releated signs to the gutter, as well as utilities for managing changes
'lewis6991/gitsigns.nvim',
opt = {
opts = {
-- See `:help gitsigns.txt`
signs = {
add = { text = '+' },
@ -123,7 +123,7 @@ require('lazy').setup({
{ -- Set lualine as statusline
'nvim-lualine/lualine.nvim',
-- See `:help lualine.txt`
opt = {
opts = {
options = {
icons_enabled = false,
theme = 'onedark',
@ -137,14 +137,14 @@ require('lazy').setup({
'lukas-reineke/indent-blankline.nvim',
-- Enable `lukas-reineke/indent-blankline.nvim`
-- See `:help indent_blankline.txt`
opt = {
opts = {
char = '',
show_trailing_blankline_indent = false,
},
},
-- "gc" to comment visual regions/lines
{ 'numToStr/Comment.nvim', opt = {} },
{ 'numToStr/Comment.nvim', opts = {} },
-- Fuzzy Finder (files, lsp, etc)
{ 'nvim-telescope/telescope.nvim', version = '*', dependencies = { 'nvim-lua/plenary.nvim' } },

Loading…
Cancel
Save