Iosevka VS nvim-treesitter

Compare Iosevka vs nvim-treesitter and see what are their differences.

SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.
surveyjs.io
featured
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
Iosevka nvim-treesitter
84 300
18,375 9,487
- 2.8%
9.7 9.9
1 day ago 7 days ago
JavaScript Scheme
SIL Open Font License 1.1 Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

Iosevka

Posts with mentions or reviews of Iosevka. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-01.
  • Git Things
    4 projects | news.ycombinator.com | 1 Jan 2024
    > 80 should be fine for most single lines of good code in most languages.

    C++ with even a modest template will flow over 80 without much effort.

    I'm now using the condensed width font Iosevka font [1] with 160 chars as my max width in clang-format and indents at 1.

    After a few days of using it, I'm converted. It was a bit odd looking at first, but I guess that's brain plasticity at work.

    1. https://github.com/be5invis/Iosevka/releases

  • Name the font, please
    1 project | /r/neovim | 10 Dec 2023
    iosevka
  • which Font do you use?
    16 projects | /r/neovim | 5 Dec 2023
    https://github.com/be5invis/Iosevka is the best
  • Monaspace
    4 projects | news.ycombinator.com | 9 Nov 2023
    Sadly I think that because of that flag it does not enable ligatures.

    I was able to see ligatures and text healing in vim running in a patched st* though. I really like it thanks! The text healing only moves the line subtly as I type and when I cursor over there are no droppings from the widened 'm' for example. It's well thought-out for code.

    If I could ask for a feature it would be to select some variants, like angular 0 with reverse slash or to leave the ! in the != ligature. To see what I mean: https://github.com/be5invis/Iosevka/blob/main/doc/stylistic-...

    * https://st.suckless.org/patches/ligatures/

  • I had no idea that one company basically owns every font
    2 projects | news.ycombinator.com | 27 Aug 2023
    Iosevka is a fantastic open-source font that's fully customizable. I have replaced the fixed font on all of my devices and apps to a custom Iosevka build I made, and I don't think I'll ever turn back.

    https://github.com/be5invis/Iosevka

  • Unicode Character “𝕏” (U+1D54F)
    1 project | news.ycombinator.com | 24 Jul 2023
    Misremembered about Iosevka: I requested support for a few other BQN characters after noticing it already had the double-struck ones (https://github.com/be5invis/Iosevka/issues/870). The other three were requests or contributions (drew 3270's 𝕏 myself!) explicitly in connection with BQN.
  • Iosevka typeface for code, from code
    1 project | /r/hackernews | 22 Jul 2023
    1 project | /r/patient_hackernews | 21 Jul 2023
  • JetBrains Mono Typeface
    4 projects | news.ycombinator.com | 19 Jul 2023
    Nothing beats Iosevka (https://github.com/be5invis/Iosevka) for me. It's narrow yet super readable, making great use of screen real estate. Lots of customization, ligatures, weights, and a nerd font patch for terminal.
  • Iosevka typeface for code, from code. Has styles like Fira Mono, Consolas, Menlo
    6 projects | news.ycombinator.com | 19 Jul 2023
    > Monospace Iosevka contains various stylistic sets to change the shape of certain characters

    That's what's on display at the linked URL (if anyone else was confused)

    You can also select variants for specific characters: https://github.com/be5invis/Iosevka/blob/main/doc/character-...

nvim-treesitter

Posts with mentions or reviews of nvim-treesitter. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-03.
  • JetBrains' unremovable AI assistant meets irresistible outcry
    5 projects | news.ycombinator.com | 3 Feb 2024
    I suggest looking for blog posts about this, you're gunnuh wanna pick out a plugin manager and stuff. It's kind of like a package manager for neovim. You can install everything manually but usually you manually install a plugin manager and it gives you commands to manage the rest of your plugins.

    These two plugins are the bare minimum in my view.

    https://github.com/nvim-treesitter/nvim-treesitter

    Treesitter gives you much better syntax highlighting based on a parser for a given language.

    https://github.com/neovim/nvim-lspconfig

    This plugin helps you connect to a given language LSP quickly with sensible defaults. You more or less pick your language from here and copy paste a snippet, and then install the relevant LSP:

    https://github.com/neovim/nvim-lspconfig/blob/master/doc/ser...

    For Python you'll want pylsp. For JavaScript it will depend on what frontend framework you're using, I probably can't help you there.

    pylsp itself takes some plugins and you'll probably want them. https://github.com/python-lsp/python-lsp-server

    Best of luck! Happy hacking.

  • Help needed with Treesitter sql injection
    1 project | /r/neovim | 7 Dec 2023
    It was changed in https://github.com/nvim-treesitter/nvim-treesitter/commit/78b54eb
  • Do I need NeoVIM?
    11 projects | /r/neovim | 7 Dec 2023
    https://github.com/hrsh7th/nvim-cmp This is an autocompletion engine https://github.com/nvim-treesitter/nvim-treesitter This allows NeoVim to install parsing scripts so NeoVim can do things like code highlighting. https://github.com/williamboman/mason.nvim Not strictly necessary, but allows you to access a repo of LSP, install them, and configure them for without you actively messing about in config files. https://github.com/neovim/nvim-lspconfig Also not strictly necessary, but vastly simplifies LSP setup. https://github.com/williamboman/mason-lspconfig.nvim This lets the above two plugins talk to each other more easily.
  • Problem with highlighting when attempting to create own treesitter parser
    2 projects | /r/neovim | 5 Dec 2023
  • neorg problem, all other plugins deactivate when added to init.lua
    2 projects | /r/neovim | 26 Nov 2023
    vim.opt.rtp:prepend(lazypath) require('lazy').setup({ { "nvim-neorg/neorg", build = ":Neorg sync-parsers", opts = { load = { ["core.defaults"] = {}, -- Loads default behaviour ["core.concealer"] = {}, -- Adds pretty icons to your documents ["core.dirman"] = { -- Manages Neorg workspaces config = { workspaces = { notes = "~/notes", }, defaultworkspace = "notes", }, }, }, }, dependencies = { { "nvim-lua/plenary.nvim", }, { -- YOU ALMOST CERTAINLY WANT A MORE ROBUST nvim-treesitter SETUP -- see https://github.com/nvim-treesitter/nvim-treesitter "nvim-treesitter/nvim-treesitter", opts = { auto_install = true, highlight = { enable = true, additional_vim_regex_highlighting = false, }, }, config = function(,opts) require('nvim-treesitter.configs').setup(opts) end }, { "folke/tokyonight.nvim", config=function(,) vim.cmd.colorscheme "tokyonight-storm" end,}, }, }, }) require 'plugins' ```
  • Getting Treesitter to work for Windows 10
    1 project | /r/neovim | 19 Nov 2023
    Change the compiler to use 'llvm' and install visual studio build tools command line stuff - at least that is what worked for me without problems. If you are using c++ then I would assume you have visual studio installed already. If you need more info follow the treesitter windows support
  • Just come back up out of the rabbit hole - TS unsets syntax variable by design!
    1 project | /r/neovim | 15 Aug 2023
    After a lot of time spent yesterday I took a fresh look today and then thought to myself - what if this is what TS does by design? A few clicks later and I found this https://github.com/nvim-treesitter/nvim-treesitter/issues/1327
  • What is this color scheme
    2 projects | /r/neovim | 11 Jul 2023
  • nvim-treesitter erroring on Windows 11 Pro
    1 project | /r/neovim | 5 Jul 2023
    I've followed the official guide for nvim-treesitter support on Windows, but I'm having problems making it work. I keep getting a compilation error for any parser I try to install using TSInstall. If instead I use TSInstallSync I don't get errors but the parser is not correctly installed. My setup uses lazyvim and I installed LLVM using winget to have a C compiler.
  • Neovim can't find C compiler
    1 project | /r/neovim | 2 Jul 2023
    I have read that gcc in windows doesn't always provide the necessary support for treesitter. I have seen ppl prefer clang over gcc in Windows. Please see also Windows support in treesitter's repo. Unfortunately I cannot help further as I don't use Windows for coding, but hope you can deduce something to solve your problem from the above link (if you haven't already read through it).

What are some alternatives?

When comparing Iosevka and nvim-treesitter you can also consider the following projects:

nerd-fonts - Iconic font aggregator, collection, & patcher. 3,600+ icons, 50+ patched fonts: Hack, Source Code Pro, more. Glyph collections: Font Awesome, Material Design Icons, Octicons, & more

coc.nvim - Nodejs extension host for vim & neovim, load extensions like VSCode and host language servers.

vscode-lean - Extension for VS Code that provides support for the older Lean 3 language. Succeeded by vscode-lean4 ('lean4' in the extensions menu) for the Lean 4 language.

nvim-lspconfig - Quickstart configs for Nvim LSP

cascadia-code - This is a fun, new monospaced font that includes programming ligatures and is designed to enhance the modern look and feel of the Windows Terminal.

vim-polyglot - A solid language pack for Vim.

JetBrainsMonoSlashed - JetBrains Mono Slashed – the free and open-source typeface for developers, now with slashed zero

vim-python-pep8-indent - A nicer Python indentation style for vim.

JetBrainsMono - JetBrains Mono – the free and open-source typeface for developers

packer.nvim - A use-package inspired plugin manager for Neovim. Uses native packages, supports Luarocks dependencies, written in Lua, allows for expressive config

Hack - A typeface designed for source code

tree-sitter - An incremental parsing system for programming tools