summaryrefslogtreecommitdiff
path: root/.config/nvim
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
parent69ea2d19de8c3321e59b92773c6b46ca0c9df6fc (diff)
iterm2 Colors and Emacs Config
Diffstat (limited to '.config/nvim')
-rw-r--r--.config/nvim/lazy-lock.json16
-rw-r--r--.config/nvim/lua/jacob/plugins.lua41
2 files changed, 23 insertions, 34 deletions
diff --git a/.config/nvim/lazy-lock.json b/.config/nvim/lazy-lock.json
deleted file mode 100644
index 4c65244..0000000
--- a/.config/nvim/lazy-lock.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "LuaSnip": { "branch": "master", "commit": "4bf40748f6fe939bdcb69325918535b1c5edea51" },
- "cmp-nvim-lsp": { "branch": "main", "commit": "39e2eda76828d88b773cc27a3f61d2ad782c922d" },
- "harpoon": { "branch": "harpoon2", "commit": "0378a6c428a0bed6a2781d459d7943843f374bce" },
- "lazy.nvim": { "branch": "main", "commit": "b1134ab82ee4279e31f7ddf7e34b2a99eb9b7bc9" },
- "lsp-zero.nvim": { "branch": "v3.x", "commit": "56db3d5ce5476b183783160e6045f7337ba12b83" },
- "mason.nvim": { "branch": "main", "commit": "e2f7f9044ec30067bc11800a9e266664b88cda22" },
- "nvim-cmp": { "branch": "main", "commit": "f17d9b4394027ff4442b298398dfcaab97e40c4f" },
- "nvim-dap": { "branch": "master", "commit": "7ff6936010b7222fea2caea0f67ed77f1b7c60dd" },
- "nvim-lspconfig": { "branch": "master", "commit": "bc6ada4b0892b7f10852c0b8ca7209fd39a6d754" },
- "nvim-treesitter": { "branch": "master", "commit": "7dc8aabe86db8c2f23520e8334f7584f83e84342" },
- "plenary.nvim": { "branch": "master", "commit": "2d9b06177a975543726ce5c73fca176cedbffe9d" },
- "telescope.nvim": { "branch": "master", "commit": "6312868392331c9c0f22725041f1ec2bef57c751" },
- "tokyonight.nvim": { "branch": "main", "commit": "52d67cc5d18c30f618897134620c64a11208fcae" },
- "undotree": { "branch": "master", "commit": "78b5241191852ffa9bb5da5ff2ee033160798c3b" }
-}
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,
+ },
})