File tree Expand file tree Collapse file tree 2 files changed +6
-25
lines changed Expand file tree Collapse file tree 2 files changed +6
-25
lines changed Original file line number Diff line number Diff line change @@ -4,13 +4,13 @@ require("core/keymaps")
4
4
local parser_config = require (" nvim-treesitter.parsers" ).get_parser_configs ()
5
5
parser_config .con4m = {
6
6
install_info = {
7
- url = " /home/nettrino/projects /tree-sitter-con4m" , -- local path or git repo
8
- files = { " src/parser.c" }, -- note that some parsers also require src/scanner.c or src/scanner.cc
7
+ url = " https://github.com/crashappsec /tree-sitter-con4m.git " , -- local path or git repo
8
+ files = { " src/parser.c" }, -- note that some parsers also require src/scanner.c or src/scanner.cc
9
9
-- optional entries:
10
- branch = " main" , -- default branch in case of git repo if different from master
11
- generate_requires_npm = false , -- if stand-alone parser without npm dependencies
12
- requires_generate_from_grammar = false , -- if folder contains pre-generated src/parser.c
10
+ branch = " main" , -- default branch in case of git repo if different from master
11
+ generate_requires_npm = false , -- if stand-alone parser without npm dependencies
12
+ requires_generate_from_grammar = false , -- if folder contains pre-generated src/parser.c
13
13
},
14
- filetype = " con4m" , -- if filetype does not match the parser name
14
+ filetype = " con4m" , -- if filetype does not match the parser name
15
15
}
16
16
vim .treesitter .language .register (" con4m" , " con4m" )
Original file line number Diff line number Diff line change @@ -127,25 +127,6 @@ return packer.startup({
127
127
end ,
128
128
})
129
129
130
- -- Statusline
131
- -- A blazing fast and easy to configure neovim statusline plugin written in pure lua.
132
- use ({
133
- " nvim-lualine/lualine.nvim" ,
134
- after = " github-nvim-theme" ,
135
- requires = {
136
- { " kyazdani42/nvim-web-devicons" },
137
- { " b0o/incline.nvim" },
138
- },
139
- config = function ()
140
- require (" incline" ).setup ()
141
- require (" lualine" ).setup ({
142
- options = {
143
- theme = " github_dark_dimmed" ,
144
- },
145
- })
146
- end ,
147
- })
148
-
149
130
use ({
150
131
" projekt0n/github-nvim-theme" ,
151
132
config = function ()
You can’t perform that action at this time.
0 commit comments