Giter Site home page Giter Site logo

nvim-treesitter-context's Introduction

nvim-treesitter-context

Lightweight alternative to context.vim

Requirements

Neovim >= v0.9.0

Note: if you need support for Neovim 0.6.x please use the tag compat/0.6.

Screenshot

theme

Supported Languages

click to expand
  • apex
  • bash
  • c
  • c_sharp
  • capnp
  • clojure
  • cmake
  • cpp
  • css
  • cuda
  • cue
  • d
  • dart
  • elixir
  • fennel
  • fish
  • fortran
  • gdscript
  • glimmer
  • go
  • graphql
  • groovy
  • haskell
  • html_tags
  • ini
  • janet (using the "janet_simple" grammar)
  • java
  • javascript
  • json
  • jsonnet
  • julia
  • latex
  • liquidsoap
  • lua
  • markdown
  • matlab
  • nim
  • nix
  • norg
  • objdump
  • ocaml_interface
  • ocaml
  • odin
  • php
  • php_only
  • prisma
  • python
  • r
  • ruby (and rspec)
  • rust
  • scala
  • scss
  • smali
  • solidity
  • svelte
  • swift
  • tcl
  • teal
  • templ
  • terraform
  • toml
  • tsx
  • typescript
  • typoscript
  • usd
  • verilog
  • vim
  • vue
  • xml
  • yaml
  • yang
  • zig
  • ada
  • agda
  • arduino
  • astro
  • beancount
  • bibtex
  • bicep
  • blueprint
  • chatito
  • clojure
  • commonlisp
  • cooklang
  • cpon
  • devicetree
  • dhall
  • dockerfile
  • dot
  • ebnf
  • ecma
  • eex
  • elm
  • elsa
  • elvish
  • embedded_template
  • erlang
  • fennel
  • foam
  • fsh
  • func
  • fusion
  • gdscript
  • git_rebase
  • gleam
  • glsl
  • godot_resource
  • gomod
  • gosum
  • gowork
  • hack
  • hcl
  • heex
  • hjson
  • hlsl
  • hocon
  • html
  • htmldjango
  • http
  • jq
  • jsdoc
  • json5
  • jsonc
  • jsx
  • kdl
  • kotlin
  • lalrpop
  • ledger
  • llvm
  • m68k
  • markdown_inline
  • menhir
  • mermaid
  • meson
  • nickel
  • ocamllex
  • pascal
  • perl
  • phpdoc
  • pioasm
  • po
  • poe_filter
  • proto
  • prql
  • pug
  • ql
  • qmldir
  • qmljs
  • query
  • racket
  • rasi
  • rego
  • rnoweb
  • ron
  • rst
  • scheme
  • slint
  • smithy
  • sparql
  • sql
  • starlark
  • supercollider
  • surface
  • sxhkdrc
  • t32
  • thrift
  • tiger
  • tlaplus
  • todotxt
  • turtle
  • twig
  • ungrammar
  • v
  • vala
  • vhs
  • wgsl
  • wgsl_bevy
  • yuck
  • Configuration

    (Default values are shown below)

    Note: calling setup() is optional.

    require'treesitter-context'.setup{
      enable = true, -- Enable this plugin (Can be enabled/disabled later via commands)
      max_lines = 0, -- How many lines the window should span. Values <= 0 mean no limit.
      min_window_height = 0, -- Minimum editor window height to enable context. Values <= 0 mean no limit.
      line_numbers = true,
      multiline_threshold = 20, -- Maximum number of lines to show for a single context
      trim_scope = 'outer', -- Which context lines to discard if `max_lines` is exceeded. Choices: 'inner', 'outer'
      mode = 'cursor',  -- Line used to calculate context. Choices: 'cursor', 'topline'
      -- Separator between context and content. Should be a single character string, like '-'.
      -- When separator is set, the context will only show up when there are at least 2 lines above cursorline.
      separator = nil,
      zindex = 20, -- The Z-index of the context window
      on_attach = nil, -- (fun(buf: integer): boolean) return false to disable attaching
    }

    Commands

    TSContextEnable, TSContextDisable and TSContextToggle.

    Appearance

    Use the highlight group TreesitterContext to change the colors of the context. Per default it links to NormalFloat.

    Use the highlight group TreesitterContextLineNumber to change the colors of the context line numbers if line_numbers is set. Per default it links to LineNr.

    Use the highlight group TreesitterContextSeparator to change the colors of the separator if separator is set. By default it links to FloatBorder.

    Use the highlight groups TreesitterContextBottom and/or TreesitterContextLineNumberBottom to change the highlight of the last line of the context window. By default it links to NONE. However, you can use this to create a border by applying an underline highlight, e.g, for an underline across the screen:

    hi TreesitterContextBottom gui=underline guisp=Grey
    hi TreesitterContextLineNumberBottom gui=underline guisp=Grey

    Or an underline below the line numbers only:

    hi TreesitterContextLineNumberBottom gui=underline guisp=Grey

    Jumping to context (upwards)

    vim.keymap.set("n", "[c", function()
      require("treesitter-context").go_to_context(vim.v.count1)
    end, { silent = true })

    Adding support for other languages

    See CONTRIBUTING.md

    nvim-treesitter-context's People

    Contributors

    lewis6991 avatar romgrk avatar uchars avatar oberblastmeister avatar seandewar avatar saecki avatar folliehiyuki avatar kwaszczuk avatar amaanq avatar avi-d-coder avatar syphar avatar luukvbaal avatar rwblokzijl avatar stevearc avatar harryvederci avatar amopel avatar lhkipp avatar madlep avatar benjaminbrownlee avatar colinkennedy avatar topaxi avatar danielkonge avatar przepompownia avatar nahso avatar brokenbyte avatar samueloph avatar fbearoff avatar frankebel avatar lf- avatar abstract-everything avatar

    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.