• Luna@lemdro.id
    link
    fedilink
    English
    arrow-up
    30
    ·
    edit-2
    1 year ago

    Helix

    I’d describe it as “NeoVim for people who don’t want to spend time configuring it”. It has syntax highlighting (for pretty much any language you can think of) and LSP support out of the box. And the config file is just a TOML file. Here’s my current config for example:

    theme = "monokai_pro_spectrum"
    
    [editor]
    line-number = "relative"
    middle-click-paste = false
    
    [editor.statusline]
    mode.normal = "NORMAL"
    mode.insert = "INSERT"
    mode.select = "SELECT"
    

    That’s it. No need to deal with Lua or VimScript

    Also using commands after typing the : is easier than in NeoVim since Helix will show you a list of available commands and a description of the closest match (or the one you choose from the list with the tab key). It looks like this: Screenshot of Helix

    I use Helix for quickly editing files and coding

    • Dessalines@lemmy.ml
      link
      fedilink
      arrow-up
      6
      ·
      1 year ago

      Same, I switched to helix about a year ago, and do all my coding (except for android because of they don’t make it easy to not use android studio).

      I was on vim for decades, but helix is finally the one that’s powerful enough to make me switch.

      • DeprecatedCompatV2@programming.dev
        link
        fedilink
        arrow-up
        2
        ·
        1 year ago

        You can also use Intellij Ultimate, the only big missing features are project config if you have mismatched versions of Gradle/AGP/Kotlin as well as the profiler.

    • ntzm [he/him]@lemmy.ml
      link
      fedilink
      English
      arrow-up
      3
      ·
      1 year ago

      I really like Helix! When the plugin system comes it will be great, because it’s definitely missing some key features