Changed colorscheme stuff
This commit is contained in:
parent
6801d0c727
commit
1d384d14db
6
init.lua
6
init.lua
|
@ -14,7 +14,7 @@ if not vim.loop.fs_stat(lazypath) then
|
|||
end
|
||||
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")
|
||||
|
||||
|
@ -33,4 +33,6 @@ require 'plugin.auto_session'
|
|||
require 'plugin.gitsigns'
|
||||
require 'plugin.lualine'
|
||||
|
||||
vim.cmd('colorscheme catppuccin-macchiato')
|
||||
vim.o.termguicolors = true
|
||||
-- vim.cmd('colorscheme catppuccin-mocha')
|
||||
vim.cmd('colorscheme base16-catppuccin-mocha')
|
||||
|
|
|
@ -32,3 +32,4 @@ require'lspconfig'.volar.setup{
|
|||
}
|
||||
require'lspconfig'.vuels.setup{}
|
||||
require'lspconfig'.jsonls.setup{}
|
||||
require'lspconfig'.gopls.setup{}
|
||||
|
|
|
@ -3,8 +3,8 @@ require('lualine').setup {
|
|||
options = {
|
||||
-- icons_enabled = true,
|
||||
icons_enabled = false,
|
||||
-- theme = 'base16',
|
||||
theme = 'dracula',
|
||||
theme = 'base16',
|
||||
-- theme = 'catppuccin-mocha',
|
||||
-- component_separators = { left = '', right = ''},
|
||||
-- section_separators = { left = '', right = ''},
|
||||
component_separators = { left = '', right = ''},
|
||||
|
|
|
@ -8,7 +8,7 @@ telescope.setup {
|
|||
fuzzy = true, -- false will only do exact matching
|
||||
override_generic_sorter = true, -- override the generic 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"
|
||||
}
|
||||
},
|
||||
|
@ -19,7 +19,9 @@ telescope.setup {
|
|||
},
|
||||
live_grep = {
|
||||
additional_args = function(_)
|
||||
return { "--hidden" }
|
||||
return {
|
||||
"--hidden"
|
||||
}
|
||||
end
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
return {
|
||||
-- {
|
||||
-- "RRethy/base16-nvim",
|
||||
-- },
|
||||
{
|
||||
"RRethy/base16-nvim",
|
||||
},
|
||||
{
|
||||
"catppuccin/nvim",
|
||||
name = "catppuccin",
|
||||
|
|
Loading…
Reference in a new issue