Change colorscheme

This commit is contained in:
Marko Korhonen 2021-12-18 00:19:49 +02:00
parent 2f2124d055
commit 10d7142b69
6 changed files with 82 additions and 28 deletions

View file

@ -10,21 +10,21 @@ blink=yes
hide-when-typing=yes
[colors]
foreground=CDCECF
background=192330
regular0=393B44
regular1=C94F6D
regular2=81B29A
regular3=DBC074
regular4=719CD6
regular5=9D79D6
regular6=63CDCF
regular7=DFDFE0
bright0=7F8C98
bright1=D6616B
bright2=58CD8B
bright3=FFE37E
bright4=84CEE4
bright5=B8A1E3
bright6=59F0FF
bright7=F2F2F2
foreground = D7DAE0
background = 1E1E28
regular0 = 6E6C7C
regular1 = E28C8C
regular2 = B3E1A3
regular3 = EADDA0
regular4 = A4B9EF
regular5 = C6AAE8
regular6 = F0AFE1
regular7 = D7DAE0
bright0 = 6E6C7C
bright1 = E28C8C
bright2 = B3E1A3
bright3 = EADDA0
bright4 = A4B9EF
bright5 = C6AAE8
bright6 = F0AFE1
bright7 = D7DAE0

View file

@ -13,3 +13,4 @@ require 'pluginconf.treesitter'
require 'pluginconf.telescope'
require 'pluginconf.indent-blankline'
require 'pluginconf.nvim-tree'
require 'pluginconf.colorscheme'

View file

@ -0,0 +1,56 @@
require("catppuccin").setup(
{
transparent_background = false,
term_colors = false,
styles = {
comments = "italic",
functions = "italic",
keywords = "italic",
strings = "NONE",
variables = "NONE",
},
integrations = {
treesitter = true,
native_lsp = {
enabled = true,
virtual_text = {
errors = "italic",
hints = "italic",
warnings = "italic",
information = "italic",
},
underlines = {
errors = "underline",
hints = "underline",
warnings = "underline",
information = "underline",
},
},
lsp_trouble = false,
lsp_saga = false,
gitgutter = true,
gitsigns = false,
telescope = true,
nvimtree = {
enabled = false,
show_root = false,
},
which_key = false,
indent_blankline = {
enabled = true,
colored_indent_levels = false,
},
dashboard = false,
neogit = false,
vim_sneak = false,
fern = false,
barbar = false,
bufferline = false,
markdown = false,
lightspeed = false,
ts_rainbow = false,
hop = false,
},
}
)
vim.cmd[[colorscheme catppuccin]]

View file

@ -1,3 +1,3 @@
require'lualine'.setup {
options = {theme = 'onedark'},
options = {theme = 'catppuccin'},
}

View file

@ -20,7 +20,7 @@ require('packer').startup(function()
use {'wbthomason/packer.nvim', opt = true}
-- Colorscheme
use 'EdenEast/nightfox.nvim'
use({"catppuccin/nvim", as = "catppuccin"})
-- Git in signcolumn
use 'airblade/vim-gitgutter'
@ -65,11 +65,11 @@ require('packer').startup(function()
use 'williamboman/nvim-lsp-installer'
-- Completion
use 'hrsh7th/nvim-cmp' -- Autocompletion plugin
use 'hrsh7th/cmp-nvim-lsp' -- LSP source for nvim-cmp
use 'hrsh7th/cmp-path' -- Path source for nvim-cmp
use 'saadparwaiz1/cmp_luasnip' -- Snippets source for nvim-cmp
use 'L3MON4D3/LuaSnip' -- Snippets plugin
use 'hrsh7th/nvim-cmp' -- Autocompletion plugin
use 'hrsh7th/cmp-nvim-lsp' -- LSP source for nvim-cmp
use 'hrsh7th/cmp-path' -- Path source for nvim-cmp
use 'saadparwaiz1/cmp_luasnip' -- Snippets source for nvim-cmp
use 'L3MON4D3/LuaSnip' -- Snippets plugin
-- treesitter syntax highlight
use {'nvim-treesitter/nvim-treesitter', run = ':TSUpdate'}

View file

@ -4,9 +4,6 @@ local cmd = vim.cmd
------ Appearance ------
-- Set colorscheme
require('nightfox').load()
-- True colors
o.termguicolors = true