Fixed organization
This commit is contained in:
parent
eeaa9e4cb4
commit
875831ed54
4
init.lua
4
init.lua
|
@ -195,7 +195,7 @@ require('lazy').setup({
|
||||||
-- 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.
|
||||||
--
|
--
|
||||||
-- For additional information see: https://github.com/folke/lazy.nvim#-structuring-your-plugins
|
-- For additional information see: https://github.com/folke/lazy.nvim#-structuring-your-plugins
|
||||||
{ import = 'plugins' },
|
{ import = 'custom/plugins' },
|
||||||
}, {})
|
}, {})
|
||||||
|
|
||||||
-- [[ Theme ]]
|
-- [[ Theme ]]
|
||||||
|
@ -206,7 +206,7 @@ vim.cmd [[colorscheme tokyonight]]
|
||||||
-- NOTE: You can change these options as you wish!
|
-- NOTE: You can change these options as you wish!
|
||||||
|
|
||||||
-- Set highlight on search
|
-- Set highlight on search
|
||||||
vim.o.hlsearch = false
|
vim.o.hlsearch = true
|
||||||
|
|
||||||
-- Make line numbers default
|
-- Make line numbers default
|
||||||
vim.wo.number = true
|
vim.wo.number = true
|
||||||
|
|
|
@ -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 = {} },
|
||||||
|
}
|
|
@ -1,4 +0,0 @@
|
||||||
return {
|
|
||||||
{ 'windwp/nvim-autopairs', event = "InsertEnter", opts = {} },
|
|
||||||
-- { 'nvim-ts-autotag', opts = {} },
|
|
||||||
}
|
|
Loading…
Reference in New Issue