Skip to content

Commit

Permalink
tmux stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-r-thomas committed Mar 8, 2024
1 parent 66e2a5a commit d588b50
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -717,25 +717,25 @@ require('lazy').setup({
end,
},

{ -- You can easily change to a different colorscheme.
-- Change the name of the colorscheme plugin below, and then
-- change the command in the config to whatever the name of that colorscheme is
--
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`
'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
-- the best color scheme there is, periodt
{
'shaunsingh/solarized.nvim',
lazy = false,
priority = 1000,
config = function()
-- Load the colorscheme here.
-- 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-night'

-- You can configure highlights by doing something like
vim.cmd.colorscheme 'solarized'
vim.cmd.hi 'Comment gui=none'
end,
},

-- navigate to and from tmux, copy and past to and from tmux, etc
{
'aserowy/tmux.nvim',
config = function()
return require('tmux').setup()
end,
},

-- Highlight todo, notes, etc in comments
{ 'folke/todo-comments.nvim', event = 'VimEnter', dependencies = { 'nvim-lua/plenary.nvim' }, opts = { signs = false } },

Expand Down

0 comments on commit d588b50

Please sign in to comment.