Fix minor things

This commit is contained in:
Jean-Claude 2023-06-22 22:37:54 +02:00
parent 127b6fa15f
commit 3345b72472
Signed by: jeanclaude
GPG Key ID: 8A300F57CBB9F63E
2 changed files with 14 additions and 10 deletions

View File

@ -36,19 +36,21 @@ packer.startup(function(use)
},
}
-- use {
-- 'uga-rosa/cmp-dictionary',
-- requires = {
-- 'hrsh7th/nvim-cmp'
-- },
-- config = function ()
-- require('user.plugins.cmp-dictionary')
-- end
-- }
use {
'uga-rosa/cmp-dictionary',
requires = {
'hrsh7th/nvim-cmp'
},
config = function()
require('user.plugins.cmp-dictionary')
end
}
use {
'neovim/nvim-lspconfig',
requires = {
'hrsh7th/nvim-cmp',
'hrsh7th/cmp-nvim-lsp',
--'b0o/schemastore.nvim',
--'folke/lsp-colors.nvim',
--'weilbith/nvim-code-action-menu',
@ -83,7 +85,7 @@ packer.startup(function(use)
'nvim-telescope/telescope.nvim',
requires = {
{ 'nvim-lua/plenary.nvim' },
{ 'nvim-telescope/telescope-fzf-native.nvim', run = 'cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release && cmake --build build --config Release && cmake --install build --prefix build' },
{ 'nvim-telescope/telescope-fzf-native.nvim', run = 'make' },
},
config = function ()
require('user.plugins.telescope')

2
flake8 Normal file
View File

@ -0,0 +1,2 @@
[flake8]
max-line-length = 100