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 { use {
-- 'uga-rosa/cmp-dictionary', 'uga-rosa/cmp-dictionary',
-- requires = { requires = {
-- 'hrsh7th/nvim-cmp' 'hrsh7th/nvim-cmp'
-- }, },
-- config = function () config = function()
-- require('user.plugins.cmp-dictionary') require('user.plugins.cmp-dictionary')
-- end end
-- } }
use { use {
'neovim/nvim-lspconfig', 'neovim/nvim-lspconfig',
requires = { requires = {
'hrsh7th/nvim-cmp',
'hrsh7th/cmp-nvim-lsp',
--'b0o/schemastore.nvim', --'b0o/schemastore.nvim',
--'folke/lsp-colors.nvim', --'folke/lsp-colors.nvim',
--'weilbith/nvim-code-action-menu', --'weilbith/nvim-code-action-menu',
@ -83,7 +85,7 @@ packer.startup(function(use)
'nvim-telescope/telescope.nvim', 'nvim-telescope/telescope.nvim',
requires = { requires = {
{ 'nvim-lua/plenary.nvim' }, { '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 () config = function ()
require('user.plugins.telescope') require('user.plugins.telescope')

2
flake8 Normal file
View File

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