darkened floating windows; added better rust support

This commit is contained in:
Corey Stock 2023-12-28 11:10:01 -08:00
parent 9fa89eec37
commit 15c12fa261
2 changed files with 51 additions and 5 deletions

View file

@ -172,21 +172,28 @@ require('lazy').setup({
gitsigns = true,
mason = true,
fidget = true,
telescope = true
telescope = true,
treesitter = true,
treesitter_context = true,
},
transparent_background = true,
dim_inactive = {
enabled = true,
shade = "dark",
percentage = 0.15,
},
transparent_background = true
})
vim.cmd.colorscheme "catppuccin-frappe"
vim.cmd.colorscheme "catppuccin-mocha"
end
},
{
-- Set lualine as statusline
'nvim-lualine/lualine.nvim',
-- See `:help lualine.txt`
opts = {
options = {
icons_enabled = false,
theme = 'onedark',
icons_enabled = true,
component_separators = '|',
section_separators = '',
},
@ -233,6 +240,7 @@ require('lazy').setup({
'nvim-treesitter/nvim-treesitter',
dependencies = {
'nvim-treesitter/nvim-treesitter-textobjects',
'nvim-treesitter/nvim-treesitter-context',
},
build = ':TSUpdate',
opts = {