feat: Initial commit

This commit is contained in:
Xavier Logerais
2023-05-11 18:41:27 +02:00
commit bc865e43e0
8 changed files with 140 additions and 0 deletions

View File

@ -0,0 +1,8 @@
return {
{ "arcticicestudio/nord-vim" },
{ "cocopon/iceberg.vim" },
{ "jacoborus/tender.vim" },
{ "altercation/vim-colors-solarized" },
{ "bluz71/vim-moonfly-colors" },
{ "joshdick/onedark.vim" },
}

View File

@ -0,0 +1,35 @@
-- Github Copilot
-- Official plugin
-- https://docs.github.com/fr/copilot/getting-started-with-github-copilot?tool=neovim
-- return {
-- {
-- "github/copilot.vim",
-- config = function()
-- require("_copilot").setup() -- NOT WORKING
-- end,
-- event = "InsertEnter",
-- },
-- }
--
-- Alternative plugin in pure lua
-- https://github.com/zbirenbaum/copilot.lua
return {
{
"zbirenbaum/copilot.lua",
cmd = "Copilot",
event = "InsertEnter",
config = function()
require("copilot").setup()
end,
}
,
{
"zbirenbaum/copilot-cmp",
config = function()
require("copilot_cmp").setup()
end
}
}

View File

@ -0,0 +1,9 @@
return {
{
"nvim-neo-tree/neo-tree.nvim",
opts = {
close_if_last_window = true,
window = { width = 50 },
}
}
}

View File

@ -0,0 +1,10 @@
return {
{ "diepm/vim-rest-console" },
{
"nvim-pack/nvim-spectre",
event = "BufRead",
config = function()
require("spectre").setup()
end,
},
}

View File

@ -0,0 +1,11 @@
return {
"nvim-telescope/telescope.nvim",
dependencies = {
"nvim-telescope/telescope-file-browser.nvim",
},
config = function(...)
require "plugins.configs.telescope" (...)
local telescope = require "telescope"
telescope.load_extension "file_browser"
end,
}

View File

@ -0,0 +1,5 @@
return {
{ "tpope/vim-surround" },
{ "tpope/vim-speeddating" },
{ "tpope/vim-repeat" },
}