Fixed organization

This commit is contained in:
ChrisHilborne 2023-10-21 20:40:35 +02:00
parent eeaa9e4cb4
commit 875831ed54
7 changed files with 19 additions and 6 deletions

View File

@ -195,7 +195,7 @@ require('lazy').setup({
-- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going.
--
-- For additional information see: https://github.com/folke/lazy.nvim#-structuring-your-plugins
{ import = 'plugins' },
{ import = 'custom/plugins' },
}, {})
-- [[ Theme ]]
@ -206,7 +206,7 @@ vim.cmd [[colorscheme tokyonight]]
-- NOTE: You can change these options as you wish!
-- Set highlight on search
vim.o.hlsearch = false
vim.o.hlsearch = true
-- Make line numbers default
vim.wo.number = true

View File

@ -0,0 +1,17 @@
return {
-- [[Autopairs]]
-- doubles up common surrounding characters
{ 'windwp/nvim-autopairs', event = "InsertEnter", opts = {} },
-- [[Comment]]
-- comments code with 'gcc' & 'gbc'
{
'numToStr/Comment.nvim',
opts = {
-- add any options here
},
lazy = false,
},
-- { 'nvim-ts-autotag', opts = {} },
}

View File

@ -1,4 +0,0 @@
return {
{ 'windwp/nvim-autopairs', event = "InsertEnter", opts = {} },
-- { 'nvim-ts-autotag', opts = {} },
}