adding additional plugins

This commit is contained in:
gregladden 2024-01-18 22:58:38 -06:00
parent 062688e12a
commit 723a3213d4
2 changed files with 15 additions and 14 deletions

View File

@ -188,16 +188,6 @@ require('lazy').setup({
end, end,
}, },
}, },
{
-- Theme inspired by Atom
'navarasu/onedark.nvim',
priority = 1000,
config = function()
vim.cmd.colorscheme 'onedark'
end,
},
{ {
-- Set lualine as statusline -- Set lualine as statusline
'nvim-lualine/lualine.nvim', 'nvim-lualine/lualine.nvim',
@ -277,8 +267,11 @@ require('lazy').setup({
-- --
-- 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 = 'custom.plugins' }, { import = 'custom.plugins' },
{ import = 'plugins' },
}, {}) }, {})
-- NeoTree Settings
vim.keymap.set('n', '<C-n>', ':Neotree filesystem reveal left<cr>')
-- [[ Setting options ]] -- [[ Setting options ]]
-- See `:help vim.o` -- See `:help vim.o`
-- NOTE: You can change these options as you wish! -- NOTE: You can change these options as you wish!
@ -583,7 +576,7 @@ local servers = {
pyright = {}, pyright = {},
-- rust_analyzer = {}, -- rust_analyzer = {},
tsserver = {}, tsserver = {},
html = { filetypes = { 'html', 'twig', 'hbs'} }, html = { filetypes = { 'html', 'twig', 'hbs' } },
lua_ls = { lua_ls = {
Lua = { Lua = {

8
lua/plugins/theme.lua Normal file
View File

@ -0,0 +1,8 @@
return {
-- Theme inspired by Atom
'navarasu/onedark.nvim',
priority = 1000,
config = function()
vim.cmd.colorscheme 'onedark'
end,
}