Skip to content

Commit

Permalink
before changing null-ls
Browse files Browse the repository at this point in the history
  • Loading branch information
nettrino committed Feb 19, 2024
1 parent ecb49dc commit d5d025f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 25 deletions.
12 changes: 6 additions & 6 deletions lua/core/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ require("core/keymaps")
local parser_config = require("nvim-treesitter.parsers").get_parser_configs()
parser_config.con4m = {
install_info = {
url = "/home/nettrino/projects/tree-sitter-con4m", -- local path or git repo
files = { "src/parser.c" }, -- note that some parsers also require src/scanner.c or src/scanner.cc
url = "https://github.com/crashappsec/tree-sitter-con4m.git", -- local path or git repo
files = { "src/parser.c" }, -- note that some parsers also require src/scanner.c or src/scanner.cc
-- optional entries:
branch = "main", -- default branch in case of git repo if different from master
generate_requires_npm = false, -- if stand-alone parser without npm dependencies
requires_generate_from_grammar = false, -- if folder contains pre-generated src/parser.c
branch = "main", -- default branch in case of git repo if different from master
generate_requires_npm = false, -- if stand-alone parser without npm dependencies
requires_generate_from_grammar = false, -- if folder contains pre-generated src/parser.c
},
filetype = "con4m", -- if filetype does not match the parser name
filetype = "con4m", -- if filetype does not match the parser name
}
vim.treesitter.language.register("con4m", "con4m")
19 changes: 0 additions & 19 deletions lua/plugins.lua
Original file line number Diff line number Diff line change
Expand Up @@ -127,25 +127,6 @@ return packer.startup({
end,
})

-- Statusline
-- A blazing fast and easy to configure neovim statusline plugin written in pure lua.
use({
"nvim-lualine/lualine.nvim",
after = "github-nvim-theme",
requires = {
{ "kyazdani42/nvim-web-devicons" },
{ "b0o/incline.nvim" },
},
config = function()
require("incline").setup()
require("lualine").setup({
options = {
theme = "github_dark_dimmed",
},
})
end,
})

use({
"projekt0n/github-nvim-theme",
config = function()
Expand Down

0 comments on commit d5d025f

Please sign in to comment.