Skip to content

Commit

Permalink
feat: add gnuplot support (#209)
Browse files Browse the repository at this point in the history
  • Loading branch information
sahashirshendu authored Aug 20, 2022
1 parent ab63cc9 commit 350bf0c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lua/Comment/ft.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@ local A = vim.api
local M = {
cxx_l = '//%s',
cxx_b = '/*%s*/',
hash = '#%s',
dbl_hash = '##%s',
dash = '--%s',
dash_bracket = '--[[%s]]',
hash = '#%s',
hash_bracket = '#[[%s]]',
haskell_b = '{-%s-}',
fsharp_b = '(*%s*)',
html = '<!--%s-->',
Expand All @@ -32,7 +33,7 @@ local L = {
bib = { M.latex },
c = { M.cxx_l, M.cxx_b },
cabal = { M.dash },
cmake = { M.hash, '#[[%s]]' },
cmake = { M.hash, M.hash_bracket },
conf = { M.hash },
conkyrc = { M.dash, M.dash_bracket },
cpp = { M.cxx_l, M.cxx_b },
Expand All @@ -52,6 +53,7 @@ local L = {
gdscript = { M.hash },
gleam = { M.cxx_l },
glsl = { M.cxx_l, M.cxx_b },
gnuplot = { M.hash, M.hash_bracket },
go = { M.cxx_l, M.cxx_b },
graphql = { M.hash },
groovy = { M.cxx_l, M.cxx_b },
Expand Down

0 comments on commit 350bf0c

Please sign in to comment.