This commit is contained in:
Omixxx 2023-02-21 23:39:26 +01:00
parent 72364ad9ac
commit d38bafbaba
11 changed files with 165 additions and 25 deletions

View file

@ -0,0 +1,4 @@
return {
"rmagatti/session-lens",
dependencies = { "rmagatti/auto-session", "nvim-telescope/telescope.nvim" },
}

View file

@ -0,0 +1,8 @@
-- File: lua/custom/plugins/autopairs.lua
return {
"windwp/nvim-autopairs",
config = function()
require("nvim-autopairs").setup {}
end,
}

View file

@ -0,0 +1,4 @@
return {
'romgrk/barbar.nvim',
dependencies = 'nvim-tree/nvim-web-devicons',
}

View file

@ -0,0 +1,6 @@
return {
'VonHeikemen/fine-cmdline.nvim',
dependencies = {
{ 'MunifTanjim/nui.nvim' }
}
}

View file

@ -0,0 +1,3 @@
return {
"github/copilot.vim"
}

View file

@ -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 {
}

View file

@ -0,0 +1,3 @@
return {
'kdheepak/lazygit.nvim'
}

View file

@ -0,0 +1,6 @@
return {
"ggandor/leap.nvim",
config = function()
require('leap').add_default_mappings()
end
}

View 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,
}

View 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',
},
}