diff --git a/lua/core/init.lua b/lua/core/init.lua index 4fa2ae4..e5016f0 100644 --- a/lua/core/init.lua +++ b/lua/core/init.lua @@ -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") diff --git a/lua/plugins.lua b/lua/plugins.lua index df6cf09..77b28c9 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -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()