update
This commit is contained in:
parent
72364ad9ac
commit
d38bafbaba
11 changed files with 165 additions and 25 deletions
4
lua/custom/plugins/auto-session.lua
Normal file
4
lua/custom/plugins/auto-session.lua
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
return {
|
||||
"rmagatti/session-lens",
|
||||
dependencies = { "rmagatti/auto-session", "nvim-telescope/telescope.nvim" },
|
||||
}
|
||||
8
lua/custom/plugins/autopairs.lua
Normal file
8
lua/custom/plugins/autopairs.lua
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
-- File: lua/custom/plugins/autopairs.lua
|
||||
|
||||
return {
|
||||
"windwp/nvim-autopairs",
|
||||
config = function()
|
||||
require("nvim-autopairs").setup {}
|
||||
end,
|
||||
}
|
||||
4
lua/custom/plugins/barbar.lua
Normal file
4
lua/custom/plugins/barbar.lua
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
return {
|
||||
'romgrk/barbar.nvim',
|
||||
dependencies = 'nvim-tree/nvim-web-devicons',
|
||||
}
|
||||
6
lua/custom/plugins/cmdline.lua
Normal file
6
lua/custom/plugins/cmdline.lua
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
return {
|
||||
'VonHeikemen/fine-cmdline.nvim',
|
||||
dependencies = {
|
||||
{ 'MunifTanjim/nui.nvim' }
|
||||
}
|
||||
}
|
||||
3
lua/custom/plugins/copilot.lua
Normal file
3
lua/custom/plugins/copilot.lua
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
return {
|
||||
"github/copilot.vim"
|
||||
}
|
||||
|
|
@ -1,5 +1,6 @@
|
|||
-- You can add your own plugins here or in other files in this directory!
|
||||
-- I promise not to create any merge conflicts in this directory :)
|
||||
--- I promise not to create any merge conflicts in this directory :)
|
||||
--
|
||||
-- See the kickstart.nvim README for more information
|
||||
return {}
|
||||
return {
|
||||
}
|
||||
|
|
|
|||
3
lua/custom/plugins/lazygit.lua
Normal file
3
lua/custom/plugins/lazygit.lua
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
return {
|
||||
'kdheepak/lazygit.nvim'
|
||||
}
|
||||
6
lua/custom/plugins/leap.lua
Normal file
6
lua/custom/plugins/leap.lua
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
return {
|
||||
"ggandor/leap.nvim",
|
||||
config = function()
|
||||
require('leap').add_default_mappings()
|
||||
end
|
||||
}
|
||||
29
lua/custom/plugins/neotree.lua
Normal file
29
lua/custom/plugins/neotree.lua
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
return {
|
||||
"nvim-neo-tree/neo-tree.nvim",
|
||||
version = "*",
|
||||
dependencies = {
|
||||
"nvim-lua/plenary.nvim",
|
||||
"nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
|
||||
"MunifTanjim/nui.nvim",
|
||||
},
|
||||
config = function()
|
||||
-- Unless you are still migrating, remove the deprecated commands from v1.x
|
||||
vim.cmd([[ let g:neo_tree_remove_legacy_commands = 1 ]])
|
||||
|
||||
require('neo-tree').setup {
|
||||
close_if_last_window = true, -- Close Neo-tree if it is the last window left in the tab
|
||||
popup_border_style = "rounded",
|
||||
enable_git_status = true,
|
||||
enable_diagnostics = true,
|
||||
diagnostics = {
|
||||
enable = true,
|
||||
icons = {
|
||||
hint = "",
|
||||
info = "",
|
||||
warning = "",
|
||||
error = "",
|
||||
},
|
||||
},
|
||||
}
|
||||
end,
|
||||
}
|
||||
18
lua/custom/plugins/themes.lua
Normal file
18
lua/custom/plugins/themes.lua
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
return {
|
||||
|
||||
{
|
||||
|
||||
'folke/tokyonight.nvim',
|
||||
priority = 1000,
|
||||
config = function()
|
||||
vim.cmd.colorscheme 'tokyonight-night'
|
||||
end,
|
||||
|
||||
},
|
||||
|
||||
{ -- Theme inspired by Atom
|
||||
'navarasu/onedark.nvim',
|
||||
},
|
||||
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue