{"id":25922411,"url":"https://github.com/hanoglu/hvim","last_synced_at":"2026-05-10T11:40:08.138Z","repository":{"id":280403689,"uuid":"921887026","full_name":"hanoglu/HVIM","owner":"hanoglu","description":"A SpaceVim inspired Neovim configuration with note taking functionality via Neorg","archived":false,"fork":false,"pushed_at":"2025-03-03T07:52:14.000Z","size":18,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-03T08:32:24.607Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hanoglu.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-01-24T20:03:16.000Z","updated_at":"2025-03-03T07:58:46.000Z","dependencies_parsed_at":"2025-03-03T08:32:26.131Z","dependency_job_id":"f8dc631e-7375-4388-8fd1-6cb86b115ef0","html_url":"https://github.com/hanoglu/HVIM","commit_stats":null,"previous_names":["hanoglu/hvim"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hanoglu%2FHVIM","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hanoglu%2FHVIM/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hanoglu%2FHVIM/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hanoglu%2FHVIM/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hanoglu","download_url":"https://codeload.github.com/hanoglu/HVIM/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241696137,"owners_count":20004748,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-03-03T16:19:09.131Z","updated_at":"2026-05-10T11:40:08.090Z","avatar_url":"https://github.com/hanoglu.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# HVIM\n## Installing\nTo install HVIM simply use;\n```bash\nmv ~/.config/nvim ~/.config/nvim_backup\ngit clone https://github.com/hanoglu/HVIM ~/.config/nvim\nnvim\n```\n## Dependencies\n```bash\n# rocks.nvim installation\nsudo dnf install lua5.1 luarocks\nnvim -u NORC -c \"source https://raw.githubusercontent.com/nvim-neorocks/rocks.nvim/master/installer.lua\"\n\n# Recommended fonts\nsudo dnf install cascadia-mono-nf-fonts\n```\n\n## Neorg Error Fix\n### \"insertenter\" Error\nTo fix \"insertenter\" error related with Neorg;\n```bash\nnvim $(find -name \"module.lua\" 2\u003e /dev/null | grep auto | head -n1) # Possibly: ~/.local/share/nvim/lazy/neorg/lua/neorg/modules/core/autocommands/module.lua\n\n```\nYou will see this in line *74*;\n```lua\nif dont_isolate and vim.fn.exists(\"#Neorg#\" .. autocmd .. \"#*\") == 0 then\n    vim.api.nvim_create_autocmd(autocmd, {\n        callback = function(ev)\n            _neorg_module_autocommand_triggered(\"core.autocommands.events.\" .. autocmd, false, ev)\n        end,\n    })\nelseif vim.fn.exists(\"#Neorg#\" .. autocmd .. \"#*.norg\") == 0 then\n    vim.api.nvim_create_autocmd(autocmd, {\n        pattern = \"*.norg\",\n        callback = function(ev)\n            _neorg_module_autocommand_triggered(\"core.autocommands.events.\" .. autocmd, true, ev)\n        end,\n    })\nend\nvim.cmd(\"augroup END\")\nmodule.events.subscribed[\"core.autocommands\"][autocmd] = true\n```\n**Delete** lines between *81..86* as stated below;\n```lua\n    vim.api.nvim_create_autocmd(autocmd, {\n        pattern = \"*.norg\",\n        callback = function(ev)\n            _neorg_module_autocommand_triggered(\"core.autocommands.events.\" .. autocmd, true, ev)\n        end,\n    })\n```\n### range Error\n```bash\nnvim ~/.local/share/nvim/lazy/neorg/lua/neorg/modules/core/esupports/metagen/module.lua\n```\nand delete 245th and 246th lines\n```lua\n        for id, node in pairs(found) do\n            local name = query.captures[id]\n            if name == \"meta\" then\n                metadata_node = node\n                range[1], _, range[2], _ = node:range() \u003c- DELETE\n                range[2] = range[2] + 2                 \u003c- DELETE\n            end\n        end\n\n```\n### norg_meta Treesitter Error\nIf you get an error about missing norg_meta package, you should manually install norg_meta Treesitter package with;\n```vimscript\n:TSInstall norg_meta\n```\n## Gallery\n![1](https://github.com/user-attachments/assets/4ce4234b-ec31-4638-afcb-b15bc83f3d61)\n\n![2](https://github.com/user-attachments/assets/ecc68a27-b037-460d-a222-8a25ae3064e5)\n\n![3](https://github.com/user-attachments/assets/d921d44a-2c75-4add-af9e-50169897d2a2)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhanoglu%2Fhvim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhanoglu%2Fhvim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhanoglu%2Fhvim/lists"}