minor theme tweaks

This commit is contained in:
rapzy 2024-03-20 20:40:07 +05:45
parent 9649890420
commit b0ca03df08

View File

@ -385,13 +385,6 @@ require('lazy').setup({
['ui-select'] = { ['ui-select'] = {
require('telescope.themes').get_dropdown(), require('telescope.themes').get_dropdown(),
}, },
media_files = {
-- filetypes whitelist
-- defaults to {"png", "jpg", "mp4", "webm", "pdf"}
filetypes = { 'png', 'webp', 'jpg', 'jpeg' },
-- find command (defaults to `fd`)
find_cmd = 'rg',
},
}, },
} }
@ -590,7 +583,9 @@ require('lazy').setup({
local servers = { local servers = {
-- clangd = {}, -- clangd = {},
-- gopls = {}, -- gopls = {},
-- pyright = {}, -- pyright = {
-- filetypes = { 'python' },
-- },
-- rust_analyzer = {}, -- rust_analyzer = {},
-- ... etc. See `:help lspconfig-all` for a list of all the pre-configured LSPs -- ... etc. See `:help lspconfig-all` for a list of all the pre-configured LSPs
-- --
@ -671,11 +666,11 @@ require('lazy').setup({
formatters_by_ft = { formatters_by_ft = {
lua = { 'stylua' }, lua = { 'stylua' },
-- Conform can also run multiple formatters sequentially -- Conform can also run multiple formatters sequentially
-- python = { 'isort', 'black' }, python = { 'isort', 'black' },
-- --
-- You can use a sub-list to tell conform to run *until* a formatter -- You can use a sub-list to tell conform to run *until* a formatter
-- is found. -- is found.
-- javascript = { { "prettierd", "prettier" } }, javascript = { { 'prettierd', 'prettier' } },
}, },
}, },
}, },
@ -780,6 +775,12 @@ require('lazy').setup({
config = function() config = function()
require('rose-pine').setup { require('rose-pine').setup {
disable_background = true, disable_background = true,
styles = {
bold = true,
italic = false,
},
vim.api.nvim_set_hl(0, 'Normal', { bg = 'none' }),
vim.api.nvim_set_hl(0, 'NormalFloat', { bg = 'none' }),
} }
end, end,
}, },