Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

highlight unnecessary keys #428

Closed
RigottiG opened this issue Mar 9, 2023 · 1 comment
Closed

highlight unnecessary keys #428

RigottiG opened this issue Mar 9, 2023 · 1 comment
Labels
bug Something isn't working

Comments

@RigottiG
Copy link

RigottiG commented Mar 9, 2023

Description

it is highlight incorrect keys like if, else, then, end

image

Neovim version

NVIM v0.8.3
Build type: Release
LuaJIT 2.1.0-beta3
Compiled by brew@Ventura

Terminal and multiplexer

tmux 3.3

Catppuccin version / branch / rev

catppuccin 1.1.0 upgrade with master today

Steps to reproduce

  1. upgrade the catppuccin

Expected behavior

does not highlight keywords

Actual behavior

highlight every keyword like if, else, then

Repro

-- DO NOT change the paths and don't remove the colorscheme
local root = vim.fn.fnamemodify("./.repro", ":p")

-- set stdpaths to use .repro
for _, name in ipairs({ "config", "data", "state", "cache" }) do
  vim.env[("XDG_%s_HOME"):format(name:upper())] = root .. "/" .. name
end

-- bootstrap lazy
local lazypath = root .. "/plugins/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
  vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", lazypath })
end
vim.opt.runtimepath:prepend(lazypath)

-- install plugins
local plugins = {
  "catppuccin/nvim",
  -- add any other plugins here
}
require("lazy").setup(plugins, {
  root = root .. "/plugins",
})

vim.cmd.colorscheme("catppuccin")
-- add anything else here
@RigottiG RigottiG added the bug Something isn't working label Mar 9, 2023
@nullchilly
Copy link
Member

nullchilly commented Mar 9, 2023

You need to enable italic support for tmux https://gist.github.com/gyribeiro/4192af1aced7a1b555df06bd3781a722

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants