summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/jacob/plugins.lua
diff options
context:
space:
mode:
authorJacob McDonnell <jacob@jacobmcdonnell.com>2024-11-06 13:55:15 -0500
committerJacob McDonnell <jacob@jacobmcdonnell.com>2024-11-06 13:55:15 -0500
commitc285815a9fc8c0e14ea0714f8990694270c77c70 (patch)
tree9dfd271e6f18e8bc4a392f5d29cb9de2d5c788ed /.config/nvim/lua/jacob/plugins.lua
parent69ea2d19de8c3321e59b92773c6b46ca0c9df6fc (diff)
iterm2 Colors and Emacs Config
Diffstat (limited to '.config/nvim/lua/jacob/plugins.lua')
-rw-r--r--.config/nvim/lua/jacob/plugins.lua41
1 files changed, 23 insertions, 18 deletions
diff --git a/.config/nvim/lua/jacob/plugins.lua b/.config/nvim/lua/jacob/plugins.lua
index 70b52d5..9c99f82 100644
--- a/.config/nvim/lua/jacob/plugins.lua
+++ b/.config/nvim/lua/jacob/plugins.lua
@@ -2,12 +2,12 @@
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
vim.fn.system({
- "git",
- "clone",
- "--filter=blob:none",
- "https://github.com/folke/lazy.nvim.git",
- "--branch=stable", -- latest stable release
- lazypath,
+ "git",
+ "clone",
+ "--filter=blob:none",
+ "https://github.com/folke/lazy.nvim.git",
+ "--branch=stable", -- latest stable release
+ lazypath,
})
end
vim.opt.rtp:prepend(lazypath)
@@ -23,23 +23,22 @@ require("lazy").setup({
branch = "harpoon2",
dependencies = { "nvim-lua/plenary.nvim" }
},
- --{
- -- "NLKNguyen/papercolor-theme",
+ {
+ "NLKNguyen/papercolor-theme",
-- config = function()
-- vim.cmd('set t_Co=256')
-- vim.cmd('set background=light')
-- vim.cmd('colorscheme PaperColor')
-- end
- --},
- {
- 'folke/tokyonight.nvim',
- priority = 1000,
- init = function()
- -- Like many other themes, this one has different styles, and you could load
- -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
- vim.cmd.colorscheme 'tokyonight-day'
- end,
- },
+ },
+ {
+ 'folke/tokyonight.nvim',
+ priority = 1000,
+ --init = function()
+ -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
+ --vim.cmd.colorscheme 'tokyonight-day'
+ --end,
+ },
{
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
@@ -57,4 +56,10 @@ require("lazy").setup({
{'L3MON4D3/LuaSnip'},
{'williamboman/mason.nvim'},
{"mfussenegger/nvim-dap" },
+ {
+ 'alljokecake/naysayer-theme.nvim',
+ init = function()
+ vim.cmd.colorscheme 'naysayer'
+ end,
+ },
})