Changed colorscheme stuff

This commit is contained in:
FredzyW 2024-07-23 12:54:35 +02:00
parent 6801d0c727
commit 1d384d14db
5 changed files with 14 additions and 9 deletions

View file

@ -14,7 +14,7 @@ if not vim.loop.fs_stat(lazypath) then
end end
vim.opt.rtp:prepend(lazypath) vim.opt.rtp:prepend(lazypath)
vim.api.nvim_command('autocmd VimEnter * lua require("lualine").hide()') -- vim.api.nvim_command('autocmd VimEnter * lua require("lualine").hide()')
require("lazy").setup("plugins") require("lazy").setup("plugins")
@ -33,4 +33,6 @@ require 'plugin.auto_session'
require 'plugin.gitsigns' require 'plugin.gitsigns'
require 'plugin.lualine' require 'plugin.lualine'
vim.cmd('colorscheme catppuccin-macchiato') vim.o.termguicolors = true
-- vim.cmd('colorscheme catppuccin-mocha')
vim.cmd('colorscheme base16-catppuccin-mocha')

View file

@ -32,3 +32,4 @@ require'lspconfig'.volar.setup{
} }
require'lspconfig'.vuels.setup{} require'lspconfig'.vuels.setup{}
require'lspconfig'.jsonls.setup{} require'lspconfig'.jsonls.setup{}
require'lspconfig'.gopls.setup{}

View file

@ -3,8 +3,8 @@ require('lualine').setup {
options = { options = {
-- icons_enabled = true, -- icons_enabled = true,
icons_enabled = false, icons_enabled = false,
-- theme = 'base16', theme = 'base16',
theme = 'dracula', -- theme = 'catppuccin-mocha',
-- component_separators = { left = '', right = ''}, -- component_separators = { left = '', right = ''},
-- section_separators = { left = '', right = ''}, -- section_separators = { left = '', right = ''},
component_separators = { left = '', right = ''}, component_separators = { left = '', right = ''},

View file

@ -8,7 +8,7 @@ telescope.setup {
fuzzy = true, -- false will only do exact matching fuzzy = true, -- false will only do exact matching
override_generic_sorter = true, -- override the generic sorter override_generic_sorter = true, -- override the generic sorter
override_file_sorter = true, -- override the file sorter override_file_sorter = true, -- override the file sorter
case_mode = "smart_case", -- or "ignore_case" or "respect_case" case_mode = "respect_case", -- or "ignore_case" or "respect_case"
-- the default case_mode is "smart_case" -- the default case_mode is "smart_case"
} }
}, },
@ -19,7 +19,9 @@ telescope.setup {
}, },
live_grep = { live_grep = {
additional_args = function(_) additional_args = function(_)
return { "--hidden" } return {
"--hidden"
}
end end
} }
} }

View file

@ -1,7 +1,7 @@
return { return {
-- { {
-- "RRethy/base16-nvim", "RRethy/base16-nvim",
-- }, },
{ {
"catppuccin/nvim", "catppuccin/nvim",
name = "catppuccin", name = "catppuccin",