Modularize the config for easier merges from kickstart.nvim
This commit is contained in:
parent
f2ef8811b6
commit
ea5c72636c
53
init.lua
53
init.lua
|
|
@ -252,18 +252,6 @@ require('lazy').setup({
|
||||||
-- NOTE: Plugins can be added with a link (or for a github repo: 'owner/repo' link).
|
-- NOTE: Plugins can be added with a link (or for a github repo: 'owner/repo' link).
|
||||||
'tpope/vim-sleuth', -- Detect tabstop and shiftwidth automatically
|
'tpope/vim-sleuth', -- Detect tabstop and shiftwidth automatically
|
||||||
|
|
||||||
-- Navigation integration for tmux
|
|
||||||
-- 'christoomey/vim-tmux-navigator',
|
|
||||||
|
|
||||||
-- Undotree for saving file editing history
|
|
||||||
'mbbill/undotree',
|
|
||||||
|
|
||||||
-- Automatic pairs for parentheses etc.
|
|
||||||
-- 'jiangmiao/auto-pairs',
|
|
||||||
|
|
||||||
-- Github copilot
|
|
||||||
-- 'github/copilot.vim',
|
|
||||||
|
|
||||||
-- Git related plugins
|
-- Git related plugins
|
||||||
'tpope/vim-fugitive',
|
'tpope/vim-fugitive',
|
||||||
'tpope/vim-rhubarb',
|
'tpope/vim-rhubarb',
|
||||||
|
|
@ -271,45 +259,6 @@ require('lazy').setup({
|
||||||
-- Detect tabstop and shiftwidth automatically
|
-- Detect tabstop and shiftwidth automatically
|
||||||
'tpope/vim-sleuth',
|
'tpope/vim-sleuth',
|
||||||
|
|
||||||
-- Harpoon for fast navigation within a project
|
|
||||||
{
|
|
||||||
'theprimeagen/harpoon',
|
|
||||||
config = function()
|
|
||||||
local mark = require 'harpoon.mark'
|
|
||||||
local ui = require 'harpoon.ui'
|
|
||||||
|
|
||||||
vim.keymap.set('n', '<C-a>', mark.add_file)
|
|
||||||
vim.keymap.set('n', '<C-e>', ui.toggle_quick_menu)
|
|
||||||
|
|
||||||
vim.keymap.set('n', '<C-t>', function()
|
|
||||||
ui.nav_file(1)
|
|
||||||
end)
|
|
||||||
vim.keymap.set('n', '<C-n>', function()
|
|
||||||
ui.nav_file(2)
|
|
||||||
end)
|
|
||||||
vim.keymap.set('n', '<C-s>', function()
|
|
||||||
ui.nav_file(3)
|
|
||||||
end)
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
|
|
||||||
-- Oil.nvim for directory manipulation
|
|
||||||
{
|
|
||||||
'stevearc/oil.nvim',
|
|
||||||
---@module 'oil'
|
|
||||||
---@type oil.SetupOpts
|
|
||||||
opts = {},
|
|
||||||
-- Optional dependencies
|
|
||||||
dependencies = { { 'echasnovski/mini.icons', opts = {} } },
|
|
||||||
-- dependencies = { "nvim-tree/nvim-web-devicons" }, -- use if you prefer nvim-web-devicons
|
|
||||||
-- Lazy loading is not recommended because it is very tricky to make it work correctly in all situations.
|
|
||||||
lazy = false,
|
|
||||||
config = function()
|
|
||||||
require('oil').setup()
|
|
||||||
vim.keymap.set('n', '-', '<CMD>Oil<CR>', { desc = 'Open parent directory' })
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
|
|
||||||
-- NOTE: Plugins can also be added by using a table,
|
-- NOTE: Plugins can also be added by using a table,
|
||||||
-- with the first argument being the link and the following
|
-- with the first argument being the link and the following
|
||||||
-- keys can be used to configure plugin behavior/loading/etc.
|
-- keys can be used to configure plugin behavior/loading/etc.
|
||||||
|
|
@ -1052,7 +1001,7 @@ require('lazy').setup({
|
||||||
-- This is the easiest way to modularize your config.
|
-- This is the easiest way to modularize your config.
|
||||||
--
|
--
|
||||||
-- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going.
|
-- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going.
|
||||||
-- { import = 'custom.plugins' },
|
{ import = 'custom.plugins' },
|
||||||
--
|
--
|
||||||
-- For additional information with loading, sourcing and examples see `:help lazy.nvim-🔌-plugin-spec`
|
-- For additional information with loading, sourcing and examples see `:help lazy.nvim-🔌-plugin-spec`
|
||||||
-- Or use telescope!
|
-- Or use telescope!
|
||||||
|
|
|
||||||
|
|
@ -2,4 +2,57 @@
|
||||||
-- 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
|
-- See the kickstart.nvim README for more information
|
||||||
return {}
|
return {
|
||||||
|
-- Undotree for saving file editing history
|
||||||
|
'mbbill/undotree',
|
||||||
|
|
||||||
|
-- TS Autotag for html auto tag close
|
||||||
|
'windwp/nvim-ts-autotag',
|
||||||
|
|
||||||
|
-- Harpoon for fast navigation within a project
|
||||||
|
{
|
||||||
|
'theprimeagen/harpoon',
|
||||||
|
config = function()
|
||||||
|
local mark = require 'harpoon.mark'
|
||||||
|
local ui = require 'harpoon.ui'
|
||||||
|
|
||||||
|
vim.keymap.set('n', '<C-a>', mark.add_file)
|
||||||
|
vim.keymap.set('n', '<C-e>', ui.toggle_quick_menu)
|
||||||
|
|
||||||
|
vim.keymap.set('n', '<C-t>', function()
|
||||||
|
ui.nav_file(1)
|
||||||
|
end)
|
||||||
|
vim.keymap.set('n', '<C-n>', function()
|
||||||
|
ui.nav_file(2)
|
||||||
|
end)
|
||||||
|
vim.keymap.set('n', '<C-s>', function()
|
||||||
|
ui.nav_file(3)
|
||||||
|
end)
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
|
||||||
|
-- Oil.nvim for directory manipulation
|
||||||
|
{
|
||||||
|
'stevearc/oil.nvim',
|
||||||
|
---@module 'oil'
|
||||||
|
---@type oil.SetupOpts
|
||||||
|
opts = {},
|
||||||
|
-- Optional dependencies
|
||||||
|
dependencies = { { 'echasnovski/mini.icons', opts = {} } },
|
||||||
|
-- dependencies = { "nvim-tree/nvim-web-devicons" }, -- use if you prefer nvim-web-devicons
|
||||||
|
-- Lazy loading is not recommended because it is very tricky to make it work correctly in all situations.
|
||||||
|
lazy = false,
|
||||||
|
config = function()
|
||||||
|
require('oil').setup()
|
||||||
|
vim.keymap.set('n', '-', '<CMD>Oil<CR>', { desc = 'Open parent directory' })
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
|
||||||
|
-- INFO: Previously used, now disabled plugins
|
||||||
|
|
||||||
|
-- Navigation integration for tmux
|
||||||
|
-- 'christoomey/vim-tmux-navigator',
|
||||||
|
|
||||||
|
-- Github copilot
|
||||||
|
-- 'github/copilot.vim',
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue