GithubHelp home page GithubHelp logo

Comments (3)

soda-zero avatar soda-zero commented on July 20, 2024

Had the same issue, apparently treesitter made some breaking changes, check https://www.reddit.com/r/neovim/comments/y5rofg/recent_treesitter_update_borked_highlighting/

This fix worked for me
https://gist.github.com/jdrouhard/dccbb692e901d5e0a00a3a4c126079c6

from oxocarbon.nvim.

shaunsingh avatar shaunsingh commented on July 20, 2024

I added support for the new tree-sitter highlights. The base colors of the theme and syntax mapping have changed slightly to align better with the official ibm carbon, but I've also updated the screenshots accordingly

from oxocarbon.nvim.

Herz3h avatar Herz3h commented on July 20, 2024

I have same issue in kitty + nvim 0.9.4 I even removed nvim-treesitter plugin:

See this simple rust file:
image

My init.lua file:

-- Theme
vim.cmd('syntax enable')
vim.opt.termguicolors = true

local plugins = {
    -- THEMES
    { 'nyoom-engineering/oxocarbon.nvim' },
}


-- LAZY.NVIM
local lazypath = vim.fn.stdpath("data") .. "/lazy/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",
    "--branch=stable", -- latest stable release
    lazypath,
  })
end
vim.opt.rtp:prepend(lazypath)

require("lazy").setup(plugins, opts)

-- THEMES
vim.opt.background = "dark"
vim.cmd("colorscheme oxocarbon")

from oxocarbon.nvim.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.