folke / nvim-treesitter-context

Show code context

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

nvim-treesitter-context

Lightweight alternative to context.vim implemented with nvim-treesitter.

Requirements

Neovim >= v0.8.2

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

Install

via vim-plug

Plug 'nvim-treesitter/nvim-treesitter'
Plug 'nvim-treesitter/nvim-treesitter-context'

via packer

use 'nvim-treesitter/nvim-treesitter'
use 'nvim-treesitter/nvim-treesitter-context'

Screenshot

theme

Supported Languages

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

    (Default values are shown below)

    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 collapse for a single context line
      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 TreesitterContextBottom 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:

    hi TreesitterContextBottom gui=underline guisp=Grey

    Jumping to context (upwards)

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

    Adding support for other languages

    See CONTRIBUTING.md

    About

    Show code context

    License:MIT License


    Languages

    Language:Lua 40.7%Language:Scheme 16.4%Language:Cap'n Proto 11.8%Language:Smali 5.3%Language:C# 4.6%Language:Swift 1.8%Language:Verilog 1.7%Language:Makefile 1.5%Language:Zig 1.5%Language:TypeScript 1.4%Language:SCSS 1.4%Language:Elixir 1.2%Language:C 1.1%Language:Shell 1.1%Language:CSS 1.1%Language:PHP 1.0%Language:Go 0.8%Language:Cuda 0.8%Language:HTML 0.7%Language:MATLAB 0.7%Language:R 0.7%Language:Fortran 0.6%Language:C++ 0.6%Language:Java 0.5%Language:Dart 0.4%Language:Rust 0.3%Language:HCL 0.2%Language:Vim Script 0.0%