Configure temas no seu NeoVim
Hoje eu quero falar um pouco sobre temas no NeoVim. Mais especificamente eu vou falar sobre o nvim-treesitter e sobre um tema que eu gosto bastante, chamado catppuccin.
Treesitter configurações e camada de abstração para Neovim.
O nvim-treesitter é fornecer uma maneira simples e fácil de usar a interface do tree-sitter para melhorar o highlighting no NeoVim.
Realce tradicional (esquerda) vs Realce baseado em Treesitter (direita).
Instalação
use { 'nvim-treesitter/nvim-treesitter', run = ':TSUpdate' }
Configuração
require'nvim-treesitter.configs'.setup {
-- A list of parser names, or 'all'
ensure_installed = { 'javascript', 'typescript', 'tsx', 'json', 'yaml', 'html', 'css', 'scss' },
-- Install parsers synchronously (only applied to `ensure_installed`)
sync_install = true,
highlight = {
-- `false` will disable the whole extension
enable = true,
-- NOTE: these are the names of the parsers and not the filetype. (for example if you want to
-- disable highlighting for the `tex` filetype, you need to include `latex` in this list as this is
-- the name of the parser)
-- list of language that will be disabled
-- disable = { 'c', "rust" },
-- Setting this to true will run `:h syntax` and tree-sitter at the same time.
-- Set this to `true` if you depend on 'syntax' being enabled (like for indentation).
-- Using this option may slow down your editor, and you may see some duplicate highlights.
-- Instead of true it can also be a list of languages
-- additional_vim_regex_highlighting = false,
},
indent = {
enable = false,
disable = {}
},
}
Catputin
Instalação
use { 'catppuccin/nvim', as = "catppuccin" }
Configuração
local catppuccin = require("catppuccin")
vim.g.catppuccin_flavour = "frappe" -- latte, frappe, macchiato, mocha
vim.cmd[[colorscheme catppuccin]]
Se você curtiu esse tema, mas não usa NeoVim, também pode esperimentar ele em outros editores.