Skip to content

Commit

Permalink
feat: Add Nim to scope languages (#951)
Browse files Browse the repository at this point in the history
  • Loading branch information
janAkali authored Dec 4, 2024
1 parent 7871a88 commit 259357f
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions lua/ibl/scope_languages.lua
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,27 @@ local M = {
mlir = {
region = true,
},
nim = {
["if"] = true,
case = true,
try = true,

["for"] = true,
["while"] = true,
block = true,
static_statement = true,
proc_declaration = true,
func_declaration = true,
method_declaration = true,
iterator_declaration = true,
converter_declaration = true,
template_declaration = true,
macro_declaration = true,
proc_expression = true,
func_expression = true,
iterator_expression = true,
concept_declaration = true,
},
nix = {
let_expression = true,
rec_attrset_expression = true,
Expand Down

0 comments on commit 259357f

Please sign in to comment.