Skip to content

Commit

Permalink
pin fidget to legacy, fix theme config
Browse files Browse the repository at this point in the history
Signed-off-by: Keming <[email protected]>
  • Loading branch information
kemingy committed Jul 26, 2023
1 parent 4d7da9f commit 99c50e6
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions nvim.lua
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,18 @@ require('packer').startup(function(use)
-- Automatically install LSPs to stdpath for neovim
'williamboman/mason.nvim',
'williamboman/mason-lspconfig.nvim',

-- Useful status updates for LSP
'j-hui/fidget.nvim',
},
}

-- Useful status updates for LSP
use {
'j-hui/fidget.nvim',
tag = 'legacy',
config = function()
require("fidget").setup {}
end,
}

use { -- Autocompletion
'hrsh7th/nvim-cmp',
requires = { 'hrsh7th/cmp-nvim-lsp', 'L3MON4D3/LuaSnip', 'saadparwaiz1/cmp_luasnip' },
Expand Down Expand Up @@ -167,7 +173,7 @@ vim.wo.signcolumn = 'yes'

-- Set colorscheme
vim.o.termguicolors = true
vim.cmd('colorscheme github_light_high_contrast')
vim.cmd('colorscheme github_light')

-- Set completeopt to have a better completion experience
vim.o.completeopt = 'menuone,noselect'
Expand Down Expand Up @@ -447,9 +453,6 @@ for _, lsp in ipairs(servers) do
}
end

-- Turn on lsp status information
require('fidget').setup()

-- Example custom configuration for lua
--
-- Make runtime files discoverable to the server
Expand Down

0 comments on commit 99c50e6

Please sign in to comment.