Skip to content

Commit d5d025f

Browse files
committed
before changing null-ls
1 parent ecb49dc commit d5d025f

File tree

2 files changed

+6
-25
lines changed

2 files changed

+6
-25
lines changed

lua/core/init.lua

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ require("core/keymaps")
44
local parser_config = require("nvim-treesitter.parsers").get_parser_configs()
55
parser_config.con4m = {
66
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
99
-- 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
1313
},
14-
filetype = "con4m", -- if filetype does not match the parser name
14+
filetype = "con4m", -- if filetype does not match the parser name
1515
}
1616
vim.treesitter.language.register("con4m", "con4m")

lua/plugins.lua

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -127,25 +127,6 @@ return packer.startup({
127127
end,
128128
})
129129

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-
149130
use({
150131
"projekt0n/github-nvim-theme",
151132
config = function()

0 commit comments

Comments
 (0)