update once more
This commit is contained in:
parent
1566186961
commit
0626b3148b
4
init.vim
4
init.vim
@ -17,7 +17,7 @@ source ~/.config/nvim/plugin-confs/bufferline.lua
|
|||||||
" source ~/.config/nvim/plugin-confs/dashboard-art.vim
|
" source ~/.config/nvim/plugin-confs/dashboard-art.vim
|
||||||
source ~/.config/nvim/plugin-confs/dashboard-nvim.lua
|
source ~/.config/nvim/plugin-confs/dashboard-nvim.lua
|
||||||
source ~/.config/nvim/plugin-confs/gitsigns.lua
|
source ~/.config/nvim/plugin-confs/gitsigns.lua
|
||||||
source ~/.config/nvim/plugin-confs/lspfuzzy.lua
|
" source ~/.config/nvim/plugin-confs/lspfuzzy.lua
|
||||||
source ~/.config/nvim/plugin-confs/lualine.lua
|
source ~/.config/nvim/plugin-confs/lualine.lua
|
||||||
source ~/.config/nvim/plugin-confs/nvimtree.lua
|
source ~/.config/nvim/plugin-confs/nvimtree.lua
|
||||||
source ~/.config/nvim/plugin-confs/presence.lua
|
source ~/.config/nvim/plugin-confs/presence.lua
|
||||||
@ -26,7 +26,6 @@ source ~/.config/nvim/plugin-confs/whichkey.lua
|
|||||||
source ~/.config/nvim/plugin-confs/telescope.lua
|
source ~/.config/nvim/plugin-confs/telescope.lua
|
||||||
source ~/.config/nvim/plugin-confs/telescope-file-browser.lua
|
source ~/.config/nvim/plugin-confs/telescope-file-browser.lua
|
||||||
|
|
||||||
source ~/.config/nvim/plugin-confs/code_actions.lua
|
|
||||||
source ~/.config/nvim/plugin-confs/goto-preview.lua
|
source ~/.config/nvim/plugin-confs/goto-preview.lua
|
||||||
source ~/.config/nvim/plugin-confs/lsp-kind.lua
|
source ~/.config/nvim/plugin-confs/lsp-kind.lua
|
||||||
source ~/.config/nvim/plugin-confs/lspconfig.lua
|
source ~/.config/nvim/plugin-confs/lspconfig.lua
|
||||||
@ -42,6 +41,7 @@ source ~/.config/nvim/plugin-confs/nvim-dap-bash.lua
|
|||||||
source ~/.config/nvim/plugin-confs/nvim-dap-ui.lua
|
source ~/.config/nvim/plugin-confs/nvim-dap-ui.lua
|
||||||
source ~/.config/nvim/plugin-confs/nvim-dap-virtual-text.lua
|
source ~/.config/nvim/plugin-confs/nvim-dap-virtual-text.lua
|
||||||
" source ~/.config/nvim/plugin-confs/copilot.lua
|
" source ~/.config/nvim/plugin-confs/copilot.lua
|
||||||
|
source ~/.config/nvim/plugin-confs/copilot-cmp.lua
|
||||||
" source ~/.config/nvim/plugin-confs/lsp-signature.lua
|
" source ~/.config/nvim/plugin-confs/lsp-signature.lua
|
||||||
" source ~/.config/nvim/plugin-confs/nvim-docs-view.lua
|
" source ~/.config/nvim/plugin-confs/nvim-docs-view.lua
|
||||||
|
|
||||||
|
263
lua/plugins.lua
263
lua/plugins.lua
@ -9,86 +9,146 @@ require('packer').startup(function(use)
|
|||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|
||||||
|
-- TELESCOPE {{{
|
||||||
|
|
||||||
|
use { 'nvim-telescope/telescope.nvim' }
|
||||||
|
use { 'nvim-telescope/telescope-file-browser.nvim' }
|
||||||
|
use 'nvim-telescope/telescope-dap.nvim'
|
||||||
|
use { 'ghassan0/telescope-glyph.nvim' }
|
||||||
use {
|
use {
|
||||||
'nvim-lualine/lualine.nvim',
|
'nvim-telescope/telescope-fzf-native.nvim',
|
||||||
requires = { 'kyazdani42/nvim-web-devicons', opt = true }
|
run =
|
||||||
|
'cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release && cmake --build build --config Release && cmake --install build --prefix build'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
-- }}}
|
||||||
|
|
||||||
|
-- LSP/DEV {{{
|
||||||
|
|
||||||
use {
|
use {
|
||||||
"zbirenbaum/copilot.lua",
|
"zbirenbaum/copilot.lua",
|
||||||
event = "VimEnter",
|
event = "VimEnter",
|
||||||
config = function()
|
config = function()
|
||||||
vim.defer_fn(function()
|
require('copilot').setup({
|
||||||
require('copilot').setup({
|
panel = {
|
||||||
panel = {
|
enabled = false,
|
||||||
enabled = false,
|
auto_refresh = false,
|
||||||
auto_refresh = false,
|
keymap = {
|
||||||
keymap = {
|
jump_prev = "[[",
|
||||||
jump_prev = "[[",
|
jump_next = "]]",
|
||||||
jump_next = "]]",
|
accept = "<CR>",
|
||||||
accept = "<CR>",
|
refresh = "gr",
|
||||||
refresh = "gr",
|
open = "<C-CR>"
|
||||||
open = "<C-CR>"
|
|
||||||
},
|
|
||||||
layout = {
|
|
||||||
position = "right", -- | top | left | right
|
|
||||||
ratio = 0.4
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
suggestion = {
|
layout = {
|
||||||
enabled = false,
|
position = "right", -- | top | left | right
|
||||||
auto_trigger = false,
|
ratio = 0.4
|
||||||
debounce = 75,
|
}
|
||||||
keymap = {
|
},
|
||||||
accept = "<C-l>",
|
suggestion = {
|
||||||
-- accept = "<Right>",
|
enabled = false,
|
||||||
next = "<M-]>",
|
auto_trigger = false,
|
||||||
prev = "<M-[>",
|
debounce = 75,
|
||||||
dismiss = "<C-]>"
|
keymap = {
|
||||||
}
|
accept = "<C-l>",
|
||||||
},
|
-- accept = "<Right>",
|
||||||
-- filetypes = {
|
next = "<M-]>",
|
||||||
-- yaml = false,
|
prev = "<M-[>",
|
||||||
-- markdown = false,
|
dismiss = "<C-]>"
|
||||||
-- help = false,
|
}
|
||||||
-- gitcommit = false,
|
},
|
||||||
-- gitrebase = false,
|
-- filetypes = {
|
||||||
-- hgcommit = false,
|
-- yaml = false,
|
||||||
-- svn = false,
|
-- markdown = false,
|
||||||
-- cvs = false,
|
-- help = false,
|
||||||
-- ["."] = false,
|
-- gitcommit = false,
|
||||||
-- },
|
-- gitrebase = false,
|
||||||
copilot_node_command = 'node', -- Node version must be < 18
|
-- hgcommit = false,
|
||||||
plugin_manager_path = vim.fn.stdpath("data") ..
|
-- svn = false,
|
||||||
"/site/pack/packer",
|
-- cvs = false,
|
||||||
server_opts_overrides = {
|
-- ["."] = false,
|
||||||
trace = "verbose",
|
-- },
|
||||||
settings = {
|
copilot_node_command = 'node', -- Node version must be < 18
|
||||||
advanced = {
|
plugin_manager_path = vim.fn.stdpath("data") ..
|
||||||
listCount = 10, -- #completions for panel
|
"/site/pack/packer",
|
||||||
inlineSuggestCount = 4 -- #completions for getCompletions
|
server_opts_overrides = {
|
||||||
}
|
trace = "verbose",
|
||||||
|
settings = {
|
||||||
|
advanced = {
|
||||||
|
listCount = 10, -- #completions for panel
|
||||||
|
inlineSuggestCount = 4 -- #completions for getCompletions
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
}
|
||||||
end, 100)
|
|
||||||
end
|
|
||||||
}
|
|
||||||
|
|
||||||
use {
|
|
||||||
"zbirenbaum/copilot-cmp",
|
|
||||||
config = function()
|
|
||||||
require("copilot_cmp").setup({
|
|
||||||
suggestion = { enabled = false },
|
|
||||||
panel = { enabled = false }
|
|
||||||
-- method = "getCompletionsCycling",
|
|
||||||
-- formatters = {
|
|
||||||
-- insert_text = require("copilot_cmp.format").remove_existing
|
|
||||||
-- }
|
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|
||||||
|
use { "zbirenbaum/copilot-cmp" }
|
||||||
|
use({
|
||||||
|
"jackMort/ChatGPT.nvim",
|
||||||
|
commit = "24bcca7",
|
||||||
|
requires = {
|
||||||
|
"MunifTanjim/nui.nvim", "nvim-lua/plenary.nvim",
|
||||||
|
"nvim-telescope/telescope.nvim"
|
||||||
|
}
|
||||||
|
})
|
||||||
|
use({
|
||||||
|
"iamcco/markdown-preview.nvim",
|
||||||
|
run = function() vim.fn["mkdp#util#install"]() end
|
||||||
|
})
|
||||||
|
|
||||||
|
use { 'https://git.sr.ht/~whynothugo/lsp_lines.nvim' }
|
||||||
|
use 'L3MON4D3/LuaSnip'
|
||||||
|
use { 'hrsh7th/nvim-cmp' }
|
||||||
|
use { 'hrsh7th/cmp-nvim-lsp' }
|
||||||
|
use { 'hrsh7th/cmp-nvim-lua' }
|
||||||
|
use { 'hrsh7th/cmp-nvim-lsp-signature-help' }
|
||||||
|
use { 'hrsh7th/cmp-path' }
|
||||||
|
use { 'hrsh7th/cmp-cmdline' }
|
||||||
|
use { 'hrsh7th/cmp-buffer' }
|
||||||
|
use 'saadparwaiz1/cmp_luasnip'
|
||||||
|
use { 'hrsh7th/cmp-nvim-lsp-document-symbol' }
|
||||||
|
use { 'neovim/nvim-lspconfig' }
|
||||||
|
use { 'onsails/lspkind-nvim' }
|
||||||
|
use { 'jose-elias-alvarez/null-ls.nvim' }
|
||||||
|
use 'folke/neodev.nvim'
|
||||||
|
use 'mfussenegger/nvim-dap'
|
||||||
|
use { "rcarriga/nvim-dap-ui", requires = { "mfussenegger/nvim-dap" } }
|
||||||
|
use { 'mfussenegger/nvim-dap-python' }
|
||||||
|
use { 'theHamsta/nvim-dap-virtual-text' }
|
||||||
|
|
||||||
|
-- }}}
|
||||||
|
|
||||||
|
-- UI {{{
|
||||||
|
|
||||||
|
use {
|
||||||
|
'nvim-lualine/lualine.nvim',
|
||||||
|
requires = { 'kyazdani42/nvim-web-devicons', opt = true }
|
||||||
|
}
|
||||||
|
use {
|
||||||
|
'j-hui/fidget.nvim',
|
||||||
|
tag = 'legacy',
|
||||||
|
config = function()
|
||||||
|
require("fidget").setup {
|
||||||
|
-- options
|
||||||
|
}
|
||||||
|
end
|
||||||
|
}
|
||||||
|
use 'norcalli/nvim-colorizer.lua'
|
||||||
|
use { 'akinsho/nvim-bufferline.lua' }
|
||||||
|
use { 'andweeb/presence.nvim' }
|
||||||
|
use { 'folke/which-key.nvim' }
|
||||||
|
use { 'glepnir/dashboard-nvim' }
|
||||||
|
use { 'kyazdani42/nvim-tree.lua' }
|
||||||
|
use 'kyazdani42/nvim-web-devicons'
|
||||||
|
use { 'lewis6991/gitsigns.nvim' }
|
||||||
|
use { 'stevearc/dressing.nvim' }
|
||||||
|
|
||||||
|
-- }}}
|
||||||
|
|
||||||
|
-- EXTRAS {{{
|
||||||
|
|
||||||
use {
|
use {
|
||||||
"nvim-neorg/neorg",
|
"nvim-neorg/neorg",
|
||||||
-- tag = "*",
|
-- tag = "*",
|
||||||
@ -107,81 +167,18 @@ require('packer').startup(function(use)
|
|||||||
}
|
}
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|
||||||
use { 'junegunn/fzf', run = function() vim.fn['fzf#install']() end }
|
|
||||||
use 'junegunn/fzf.vim'
|
|
||||||
use 'norcalli/nvim-colorizer.lua'
|
|
||||||
use 'jiangmiao/auto-pairs'
|
use 'jiangmiao/auto-pairs'
|
||||||
use 'pechorin/any-jump.vim'
|
use 'pechorin/any-jump.vim'
|
||||||
use 'tpope/vim-commentary'
|
use 'tpope/vim-commentary'
|
||||||
use 'tpope/vim-surround'
|
use 'tpope/vim-surround'
|
||||||
use 'voldikss/vim-floaterm'
|
use 'voldikss/vim-floaterm'
|
||||||
use 'wakatime/vim-wakatime'
|
use 'wakatime/vim-wakatime'
|
||||||
|
use 'rmagatti/goto-preview'
|
||||||
|
|
||||||
use { 'akinsho/nvim-bufferline.lua' }
|
-- }}}
|
||||||
use { 'andweeb/presence.nvim' }
|
|
||||||
use { 'folke/which-key.nvim' }
|
|
||||||
use { 'glepnir/dashboard-nvim' }
|
|
||||||
use { 'kyazdani42/nvim-tree.lua' }
|
|
||||||
use 'kyazdani42/nvim-web-devicons'
|
|
||||||
use { 'lewis6991/gitsigns.nvim' }
|
|
||||||
use { 'nvim-telescope/telescope.nvim' }
|
|
||||||
use { 'nvim-telescope/telescope-file-browser.nvim' }
|
|
||||||
use 'nvim-telescope/telescope-dap.nvim'
|
|
||||||
use { 'ghassan0/telescope-glyph.nvim' }
|
|
||||||
use {
|
|
||||||
'nvim-telescope/telescope-fzf-native.nvim',
|
|
||||||
run =
|
|
||||||
'cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release && cmake --build build --config Release && cmake --install build --prefix build'
|
|
||||||
}
|
|
||||||
|
|
||||||
use { 'ojroques/nvim-lspfuzzy' }
|
-- COLORSCHEMES {{{
|
||||||
|
|
||||||
use 'L3MON4D3/LuaSnip'
|
|
||||||
-- use 'amrbashir/nvim-docs-view'
|
|
||||||
use { 'hrsh7th/nvim-cmp' }
|
|
||||||
use { 'hrsh7th/cmp-nvim-lsp' }
|
|
||||||
use { 'hrsh7th/cmp-nvim-lua' }
|
|
||||||
use { 'hrsh7th/cmp-nvim-lsp-signature-help' }
|
|
||||||
use { 'hrsh7th/cmp-path' }
|
|
||||||
use { 'hrsh7th/cmp-cmdline' }
|
|
||||||
use { 'hrsh7th/cmp-buffer' }
|
|
||||||
use { 'hrsh7th/cmp-nvim-lsp-document-symbol' }
|
|
||||||
use {
|
|
||||||
'j-hui/fidget.nvim',
|
|
||||||
tag = 'legacy',
|
|
||||||
config = function()
|
|
||||||
require("fidget").setup {
|
|
||||||
-- options
|
|
||||||
}
|
|
||||||
end
|
|
||||||
}
|
|
||||||
use { 'jose-elias-alvarez/null-ls.nvim' }
|
|
||||||
use { 'https://git.sr.ht/~whynothugo/lsp_lines.nvim' }
|
|
||||||
use { 'neovim/nvim-lspconfig' }
|
|
||||||
use { 'onsails/lspkind-nvim' }
|
|
||||||
-- use 'ray-x/lsp_signature.nvim'
|
|
||||||
use { 'rmagatti/goto-preview' }
|
|
||||||
use 'saadparwaiz1/cmp_luasnip'
|
|
||||||
use({
|
|
||||||
"jackMort/ChatGPT.nvim",
|
|
||||||
commit = "24bcca7",
|
|
||||||
requires = {
|
|
||||||
"MunifTanjim/nui.nvim", "nvim-lua/plenary.nvim",
|
|
||||||
"nvim-telescope/telescope.nvim"
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
use({
|
|
||||||
"iamcco/markdown-preview.nvim",
|
|
||||||
run = function() vim.fn["mkdp#util#install"]() end
|
|
||||||
})
|
|
||||||
|
|
||||||
use 'folke/neodev.nvim'
|
|
||||||
use 'mfussenegger/nvim-dap'
|
|
||||||
use { "rcarriga/nvim-dap-ui", requires = { "mfussenegger/nvim-dap" } }
|
|
||||||
use 'mfussenegger/nvim-dap-python'
|
|
||||||
use 'theHamsta/nvim-dap-virtual-text'
|
|
||||||
use { 'Mofiqul/dracula.nvim' }
|
use { 'Mofiqul/dracula.nvim' }
|
||||||
use({
|
use({
|
||||||
'NTBBloodbath/doom-one.nvim',
|
'NTBBloodbath/doom-one.nvim',
|
||||||
@ -227,4 +224,6 @@ require('packer').startup(function(use)
|
|||||||
use { 'projekt0n/github-nvim-theme' }
|
use { 'projekt0n/github-nvim-theme' }
|
||||||
|
|
||||||
use { "catppuccin/nvim", as = "catppuccin" }
|
use { "catppuccin/nvim", as = "catppuccin" }
|
||||||
|
|
||||||
|
-- }}}
|
||||||
end)
|
end)
|
||||||
|
8
plugin-confs/copilot-cmp.lua
Normal file
8
plugin-confs/copilot-cmp.lua
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
require("copilot_cmp").setup({
|
||||||
|
suggestion = { enabled = false },
|
||||||
|
panel = { enabled = false }
|
||||||
|
-- method = "getCompletionsCycling",
|
||||||
|
-- formatters = {
|
||||||
|
-- insert_text = require("copilot_cmp.format").remove_existing
|
||||||
|
-- }
|
||||||
|
})
|
@ -1,38 +1 @@
|
|||||||
require('copilot').setup({
|
|
||||||
panel = {
|
|
||||||
enabled = true,
|
|
||||||
auto_refresh = false,
|
|
||||||
keymap = {
|
|
||||||
jump_prev = "[[",
|
|
||||||
jump_next = "]]",
|
|
||||||
accept = "<CR>",
|
|
||||||
refresh = "gr",
|
|
||||||
open = "<S-CR>"
|
|
||||||
},
|
|
||||||
},
|
|
||||||
suggestion = {
|
|
||||||
enabled = true,
|
|
||||||
auto_trigger = false,
|
|
||||||
debounce = 75,
|
|
||||||
keymap = {
|
|
||||||
accept = "<M-l>",
|
|
||||||
next = "<M-]>",
|
|
||||||
prev = "<M-[>",
|
|
||||||
dismiss = "<C-]>",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
filetypes = {
|
|
||||||
yaml = false,
|
|
||||||
markdown = false,
|
|
||||||
help = false,
|
|
||||||
gitcommit = false,
|
|
||||||
gitrebase = false,
|
|
||||||
hgcommit = false,
|
|
||||||
svn = false,
|
|
||||||
cvs = false,
|
|
||||||
["."] = false,
|
|
||||||
},
|
|
||||||
copilot_node_command = 'node', -- Node version must be < 18
|
|
||||||
plugin_manager_path = vim.fn.stdpath("data") .. "/site/pack/packer",
|
|
||||||
server_opts_overrides = {},
|
|
||||||
})
|
|
||||||
|
Loading…
Reference in New Issue
Block a user