Skip to content

Commit

Permalink
More colorschemes.
Browse files Browse the repository at this point in the history
  • Loading branch information
kglundgren committed Nov 14, 2024
1 parent 340757b commit 62592c8
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 6 deletions.
20 changes: 14 additions & 6 deletions src/nvim/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,27 @@ local is_windows = vim.loop.os_uname().sysname == 'Windows_NT'
-- vim.cmd('set showtabline=1') -- Show tab-line only if there are at least two tab pages.
vim.cmd('set nowrap') -- No line-wrapping on long lines.

-- gruvbox
-- Set contrast.
-- This configuration option should be placed before `colorscheme gruvbox-material`.
-- Available values: 'hard', 'medium'(default), 'soft'
-- vim.g.gruvbox_material_background = 'medium'
-- vim.g.gruvbox_material_disable_italic_comment = false
-- vim.cmd('colo gruvbox-material')
require('tokyonight').setup {
styles = {
comments = { italic = true },
keywords = { italic = true }

-- tokyonight
local use_tokyonight = false
if use_tokyonight then
require('tokyonight').setup {
styles = {
comments = { italic = true },
keywords = { italic = true }
}
}
}
vim.cmd('colo tokyonight')
vim.cmd('colo tokyonight')
end

vim.cmd('colo monochrome')

--== Options ==--
local opts = {
Expand Down
2 changes: 2 additions & 0 deletions src/nvim/lua/config/mini.lua
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ now(function() require('mini.icons').setup() end)
now(function() add { source = 'folke/tokyonight.nvim' } end)
now(function() add { source = 'sainnhe/gruvbox-material' } end)
now(function() add { source = 'sainttttt/flesh-and-blood' } end)
now(function() add { source = 'wnkz/monoglow.nvim'} end)
now(function() add { source = 'kdheepak/monochrome.nvim'} end)

-- fzf-lua
now(function() add { source = 'ibhagwan/fzf-lua' } end)
Expand Down

0 comments on commit 62592c8

Please sign in to comment.