Change colorscheme
This commit is contained in:
parent
0052ea28f8
commit
5411c2f5e7
6 changed files with 82 additions and 28 deletions
56
home/.config/nvim/lua/pluginconf/colorscheme.lua
Normal file
56
home/.config/nvim/lua/pluginconf/colorscheme.lua
Normal 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]]
|
|
@ -1,3 +1,3 @@
|
|||
require'lualine'.setup {
|
||||
options = {theme = 'onedark'},
|
||||
options = {theme = 'catppuccin'},
|
||||
}
|
||||
|
|
|
@ -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'}
|
||||
|
|
|
@ -4,9 +4,6 @@ local cmd = vim.cmd
|
|||
|
||||
------ Appearance ------
|
||||
|
||||
-- Set colorscheme
|
||||
require('nightfox').load()
|
||||
|
||||
-- True colors
|
||||
o.termguicolors = true
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue