idk
This commit is contained in:
+6
-5
@@ -27,16 +27,17 @@
|
|||||||
"nvim-autopairs": { "branch": "master", "commit": "3d02855468f94bf435db41b661b58ec4f48a06b7" },
|
"nvim-autopairs": { "branch": "master", "commit": "3d02855468f94bf435db41b661b58ec4f48a06b7" },
|
||||||
"nvim-bufdel": { "branch": "main", "commit": "523d58e94e7212fff3e05c247b962dc8f93bcfde" },
|
"nvim-bufdel": { "branch": "main", "commit": "523d58e94e7212fff3e05c247b962dc8f93bcfde" },
|
||||||
"nvim-cmp": { "branch": "main", "commit": "8c82d0bd31299dbff7f8e780f5e06d2283de9678" },
|
"nvim-cmp": { "branch": "main", "commit": "8c82d0bd31299dbff7f8e780f5e06d2283de9678" },
|
||||||
"nvim-lspconfig": { "branch": "master", "commit": "339ccc81e08793c3af9b83882a6ebd90c9cc0d3b" },
|
"nvim-dap": { "branch": "master", "commit": "99807078c5089ed30e0547aa4b52c5867933f426" },
|
||||||
"nvim-tree.lua": { "branch": "master", "commit": "d529a99f88e0dff02e0aa275db2f595cd252a2c8" },
|
"nvim-lspconfig": { "branch": "master", "commit": "14b5a806c928390fac9ff4a5630d20eb902afad8" },
|
||||||
"nvim-treesitter": { "branch": "master", "commit": "5da195ac3dfafd08d8b10756d975f0e01e1d563a" },
|
"nvim-tree.lua": { "branch": "master", "commit": "fca0b67c0b5a31727fb33addc4d9c100736a2894" },
|
||||||
|
"nvim-treesitter": { "branch": "master", "commit": "4423f3053964461656c7432fd33f205ef88a6168" },
|
||||||
"nvim-web-devicons": { "branch": "master", "commit": "aafa5c187a15701a7299a392b907ec15d9a7075f" },
|
"nvim-web-devicons": { "branch": "master", "commit": "aafa5c187a15701a7299a392b907ec15d9a7075f" },
|
||||||
"plenary.nvim": { "branch": "master", "commit": "3707cdb1e43f5cea73afb6037e6494e7ce847a66" },
|
"plenary.nvim": { "branch": "master", "commit": "3707cdb1e43f5cea73afb6037e6494e7ce847a66" },
|
||||||
"presence.nvim": { "branch": "main", "commit": "87c857a56b7703f976d3a5ef15967d80508df6e6" },
|
"presence.nvim": { "branch": "main", "commit": "87c857a56b7703f976d3a5ef15967d80508df6e6" },
|
||||||
"telescope.nvim": { "branch": "master", "commit": "415af52339215926d705cccc08145f3782c4d132" },
|
"telescope.nvim": { "branch": "master", "commit": "415af52339215926d705cccc08145f3782c4d132" },
|
||||||
"ui": { "branch": "v3.0", "commit": "5942f52103fe8f5621d514cbc80ea990dc8fce09" },
|
"ui": { "branch": "v3.0", "commit": "2aa9d7c75a2b397594ae30b765883740a77ca081" },
|
||||||
"undotree": { "branch": "master", "commit": "2556c6800b210b2096b55b66e74b4cc1d9ebbe4f" },
|
"undotree": { "branch": "master", "commit": "2556c6800b210b2096b55b66e74b4cc1d9ebbe4f" },
|
||||||
"vim-suda": { "branch": "master", "commit": "9adda7d195222d4e2854efb2a88005a120296c47" },
|
"vim-suda": { "branch": "master", "commit": "9adda7d195222d4e2854efb2a88005a120296c47" },
|
||||||
"volt": { "branch": "main", "commit": "f02b065caf0327bf4d443ff6d91cb0edd6948ddb" },
|
"volt": { "branch": "main", "commit": "91fe3e82842a709443cdd61fc1a1315a5eb57a8d" },
|
||||||
"which-key.nvim": { "branch": "main", "commit": "1f8d414f61e0b05958c342df9b6a4c89ce268766" }
|
"which-key.nvim": { "branch": "main", "commit": "1f8d414f61e0b05958c342df9b6a4c89ce268766" }
|
||||||
}
|
}
|
||||||
|
|||||||
+136
-132
@@ -1,146 +1,150 @@
|
|||||||
return {
|
return {
|
||||||
{
|
{
|
||||||
"stevearc/conform.nvim",
|
"stevearc/conform.nvim",
|
||||||
-- event = 'BufWritePre', -- uncomment for format on save
|
-- event = 'BufWritePre', -- uncomment for format on save
|
||||||
opts = require "configs.conform",
|
opts = require "configs.conform",
|
||||||
},
|
|
||||||
|
|
||||||
{
|
|
||||||
"mbbill/undotree",
|
|
||||||
},
|
|
||||||
|
|
||||||
{
|
|
||||||
"andweeb/presence.nvim",
|
|
||||||
},
|
|
||||||
|
|
||||||
{
|
|
||||||
"kwkarlwang/bufresize.nvim",
|
|
||||||
config = function()
|
|
||||||
require "configs.bufresize"
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
|
|
||||||
{
|
|
||||||
"nvim-focus/focus.nvim",
|
|
||||||
config = function()
|
|
||||||
require "configs.focus"
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
|
|
||||||
-- These are some examples, uncomment them if you want to see them work!
|
|
||||||
{
|
|
||||||
"neovim/nvim-lspconfig",
|
|
||||||
dependencies = {
|
|
||||||
"williamboman/mason.nvim",
|
|
||||||
"williamboman/mason-lspconfig.nvim",
|
|
||||||
"hrsh7th/cmp-nvim-lsp",
|
|
||||||
"hrsh7th/cmp-buffer",
|
|
||||||
"hrsh7th/cmp-path",
|
|
||||||
"hrsh7th/cmp-cmdline",
|
|
||||||
"hrsh7th/nvim-cmp",
|
|
||||||
"L3MON4D3/LuaSnip",
|
|
||||||
"saadparwaiz1/cmp_luasnip",
|
|
||||||
"j-hui/fidget.nvim",
|
|
||||||
},
|
},
|
||||||
config = function()
|
|
||||||
require "configs.lspconfig"
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
|
|
||||||
{ "lambdalisue/vim-suda" },
|
{
|
||||||
|
"mbbill/undotree",
|
||||||
{
|
|
||||||
"ojroques/nvim-bufdel",
|
|
||||||
opts = {
|
|
||||||
next = 'tabs',
|
|
||||||
quit = true,
|
|
||||||
},
|
},
|
||||||
},
|
|
||||||
|
|
||||||
{
|
{
|
||||||
"zbirenbaum/copilot.lua",
|
"andweeb/presence.nvim",
|
||||||
lazy = true,
|
|
||||||
cmd = "Copilot",
|
|
||||||
event = "InsertEnter",
|
|
||||||
config = function()
|
|
||||||
require "configs.copilot"
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
|
|
||||||
{
|
|
||||||
"CopilotC-Nvim/CopilotChat.nvim",
|
|
||||||
dependencies = {
|
|
||||||
{ "zbirenbaum/copilot.lua" }, -- or zbirenbaum/copilot.lua
|
|
||||||
{ "nvim-lua/plenary.nvim", branch = "master" }, -- for curl, log and async functions
|
|
||||||
},
|
},
|
||||||
build = "make tiktoken", -- Only on MacOS or Linux
|
|
||||||
opts = {
|
{
|
||||||
-- See Configuration section for options
|
"kwkarlwang/bufresize.nvim",
|
||||||
|
config = function()
|
||||||
|
require "configs.bufresize"
|
||||||
|
end,
|
||||||
},
|
},
|
||||||
},
|
|
||||||
|
|
||||||
{
|
{
|
||||||
"rmagatti/auto-session",
|
"nvim-focus/focus.nvim",
|
||||||
opts = {
|
config = function()
|
||||||
enabled = true,
|
require "configs.focus"
|
||||||
root_dir = vim.fn.stdpath "data" .. "/sessions/",
|
end,
|
||||||
auto_save = true,
|
},
|
||||||
auto_restore = true,
|
|
||||||
auto_create = true,
|
|
||||||
suppressed_dirs = nil,
|
|
||||||
allowed_dirs = nil,
|
|
||||||
auto_restore_last_session = false,
|
|
||||||
use_git_branch = false,
|
|
||||||
lazy_support = true,
|
|
||||||
bypass_save_filetypes = nil,
|
|
||||||
close_unsupported_windows = true,
|
|
||||||
args_allow_single_directory = true,
|
|
||||||
args_allow_files_auto_save = false,
|
|
||||||
continue_restore_on_error = true,
|
|
||||||
show_auto_restore_notif = false,
|
|
||||||
cwd_change_handling = false,
|
|
||||||
lsp_stop_on_restore = false,
|
|
||||||
log_level = "error",
|
|
||||||
|
|
||||||
session_lens = {
|
{
|
||||||
load_on_setup = true,
|
"mfussenegger/nvim-dap",
|
||||||
theme_conf = {
|
},
|
||||||
-- test
|
|
||||||
|
-- These are some examples, uncomment them if you want to see them work!
|
||||||
|
{
|
||||||
|
"neovim/nvim-lspconfig",
|
||||||
|
dependencies = {
|
||||||
|
"williamboman/mason.nvim",
|
||||||
|
"williamboman/mason-lspconfig.nvim",
|
||||||
|
"hrsh7th/cmp-nvim-lsp",
|
||||||
|
"hrsh7th/cmp-buffer",
|
||||||
|
"hrsh7th/cmp-path",
|
||||||
|
"hrsh7th/cmp-cmdline",
|
||||||
|
"hrsh7th/nvim-cmp",
|
||||||
|
"L3MON4D3/LuaSnip",
|
||||||
|
"saadparwaiz1/cmp_luasnip",
|
||||||
|
"j-hui/fidget.nvim",
|
||||||
},
|
},
|
||||||
previewer = false,
|
config = function()
|
||||||
|
require "configs.lspconfig"
|
||||||
mappings = {
|
end,
|
||||||
delete_session = { "i", "<C-D>" },
|
|
||||||
alternate_session = { "i", "<C-S>" },
|
|
||||||
copy_session = { "i", "<C-Y>" },
|
|
||||||
},
|
|
||||||
|
|
||||||
session_control = {
|
|
||||||
control_dir = vim.fn.stdpath "data" .. "/auto_session/",
|
|
||||||
control_filename = "session_control.json",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
},
|
|
||||||
|
|
||||||
{
|
{ "lambdalisue/vim-suda" },
|
||||||
"smolck/command-completion.nvim",
|
|
||||||
opts = {
|
{
|
||||||
border = nil,
|
"ojroques/nvim-bufdel",
|
||||||
highlight_selection = true,
|
opts = {
|
||||||
use_matchfuzzy = true,
|
next = 'tabs',
|
||||||
|
quit = true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
"zbirenbaum/copilot.lua",
|
||||||
|
lazy = true,
|
||||||
|
cmd = "Copilot",
|
||||||
|
event = "InsertEnter",
|
||||||
|
config = function()
|
||||||
|
require "configs.copilot"
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
"CopilotC-Nvim/CopilotChat.nvim",
|
||||||
|
dependencies = {
|
||||||
|
{ "zbirenbaum/copilot.lua" }, -- or zbirenbaum/copilot.lua
|
||||||
|
{ "nvim-lua/plenary.nvim", branch = "master" }, -- for curl, log and async functions
|
||||||
|
},
|
||||||
|
build = "make tiktoken", -- Only on MacOS or Linux
|
||||||
|
opts = {
|
||||||
|
-- See Configuration section for options
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
"rmagatti/auto-session",
|
||||||
|
opts = {
|
||||||
|
enabled = true,
|
||||||
|
root_dir = vim.fn.stdpath "data" .. "/sessions/",
|
||||||
|
auto_save = true,
|
||||||
|
auto_restore = true,
|
||||||
|
auto_create = true,
|
||||||
|
suppressed_dirs = nil,
|
||||||
|
allowed_dirs = nil,
|
||||||
|
auto_restore_last_session = false,
|
||||||
|
use_git_branch = false,
|
||||||
|
lazy_support = true,
|
||||||
|
bypass_save_filetypes = nil,
|
||||||
|
close_unsupported_windows = true,
|
||||||
|
args_allow_single_directory = true,
|
||||||
|
args_allow_files_auto_save = false,
|
||||||
|
continue_restore_on_error = true,
|
||||||
|
show_auto_restore_notif = false,
|
||||||
|
cwd_change_handling = false,
|
||||||
|
lsp_stop_on_restore = false,
|
||||||
|
log_level = "error",
|
||||||
|
|
||||||
|
session_lens = {
|
||||||
|
load_on_setup = true,
|
||||||
|
theme_conf = {
|
||||||
|
-- test
|
||||||
|
},
|
||||||
|
previewer = false,
|
||||||
|
|
||||||
|
mappings = {
|
||||||
|
delete_session = { "i", "<C-D>" },
|
||||||
|
alternate_session = { "i", "<C-S>" },
|
||||||
|
copy_session = { "i", "<C-Y>" },
|
||||||
|
},
|
||||||
|
|
||||||
|
session_control = {
|
||||||
|
control_dir = vim.fn.stdpath "data" .. "/auto_session/",
|
||||||
|
control_filename = "session_control.json",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
"smolck/command-completion.nvim",
|
||||||
|
opts = {
|
||||||
|
border = nil,
|
||||||
|
highlight_selection = true,
|
||||||
|
use_matchfuzzy = true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nvim-treesitter/nvim-treesitter",
|
||||||
|
opts = {
|
||||||
|
ensure_installed = "all",
|
||||||
|
sync_install = false,
|
||||||
|
auto_install = true,
|
||||||
|
highlight = {
|
||||||
|
enable = true,
|
||||||
|
additional_vim_regex_highlighting = false,
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
|
||||||
{
|
|
||||||
"nvim-treesitter/nvim-treesitter",
|
|
||||||
opts = {
|
|
||||||
ensure_installed = "all",
|
|
||||||
sync_install = false,
|
|
||||||
auto_install = true,
|
|
||||||
highlight = {
|
|
||||||
enable = true,
|
|
||||||
additional_vim_regex_highlighting = false,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user