Neovim setup

Can it be this easy to make nvim stuff just work? Do I really just need
to pull the files in with Home Manager? It seems so, so long as nvim
knows about gcc :)

There is also a related side of tmux here because it all ties together.
This commit is contained in:
Gene Liverman 2023-12-19 16:32:37 -05:00
parent 5b7bb14cd6
commit dfc94f8c69
27 changed files with 369 additions and 3 deletions

View file

@ -0,0 +1,14 @@
return {'romgrk/barbar.nvim',
dependencies = {
'lewis6991/gitsigns.nvim', -- OPTIONAL: for git status
'nvim-tree/nvim-web-devicons', -- OPTIONAL: for file icons
},
init = function() vim.g.barbar_auto_setup = false end,
opts = {
-- lazy.nvim will automatically call setup for you. put your options here, anything missing will use the default:
-- animation = true,
-- insert_at_start = true,
-- …etc.
},
}

View file

@ -0,0 +1,7 @@
return{
"akinsho/bufferline.nvim",
version = "*",
dependencies = "nvim-tree/nvim-web-devicons",
event = "BufReadPre",
config = true
}

View file

@ -0,0 +1,11 @@
return{
"nvim-tree/nvim-tree.lua",
config = function ()
vim.g.loaded_netrw = 1
vim.g.loaded_netrwPlugin = 1
require('nvim-tree').setup()
vim.keymap.set('n', '<c-n>', ':NvimTreeFindFileToggle<CR>')
end
}

View file

@ -0,0 +1,10 @@
return {
"catppuccin/nvim",
name = "catppuccin",
flavour = "frappe", -- latte, frappe, macchiato, mocha
lazy = false,
priority = 1000,
config = function()
vim.cmd.colorscheme "catppuccin"
end,
}

View file

@ -0,0 +1,11 @@
return {
"ellisonleao/gruvbox.nvim",
priority = 1000 ,
config = function ()
require("gruvbox").setup()
vim.o.background = "dark"
vim.o.termguicolors = true
vim.cmd.colorscheme "gruvbox"
end
}

View file

@ -0,0 +1,8 @@
return {
"rebelot/kanagawa.nvim",
lazy = false,
priority = 1000,
config = function()
vim.cmd.colorscheme "kanagawa"
end,
}

View file

@ -0,0 +1,8 @@
return {
"nyoom-engineering/oxocarbon.nvim",
config = function ()
vim.o.background = "dark"
vim.o.termguicolors = true
vim.cmd.colorscheme "oxocarbon"
end
}

View file

@ -0,0 +1,10 @@
return {
-- the colorscheme should be available when starting Neovim
"folke/tokyonight.nvim",
lazy = false, -- make sure we load this during startup if it is your main colorscheme
priority = 1000, -- make sure to load this before all the other start plugins
config = function()
-- load the colorscheme here
vim.cmd.colorscheme "tokyonight-storm"
end,
}