{"id":13895728,"url":"https://github.com/n-shift/thesis","last_synced_at":"2025-07-17T11:31:59.050Z","repository":{"id":140090346,"uuid":"444142172","full_name":"n-shift/thesis","owner":"n-shift","description":null,"archived":true,"fork":false,"pushed_at":"2022-06-21T18:50:32.000Z","size":76,"stargazers_count":8,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-11-25T01:32:02.263Z","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":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/n-shift.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"license","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}},"created_at":"2022-01-03T17:17:47.000Z","updated_at":"2024-07-09T19:36:01.000Z","dependencies_parsed_at":"2024-02-01T05:59:40.068Z","dependency_job_id":"84fe552b-16c3-4b79-824e-62bbe1c2423d","html_url":"https://github.com/n-shift/thesis","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/n-shift/thesis","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/n-shift%2Fthesis","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/n-shift%2Fthesis/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/n-shift%2Fthesis/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/n-shift%2Fthesis/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/n-shift","download_url":"https://codeload.github.com/n-shift/thesis/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/n-shift%2Fthesis/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265600620,"owners_count":23795723,"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":"2024-08-06T18:02:25.755Z","updated_at":"2025-07-17T11:31:58.794Z","avatar_url":"https://github.com/n-shift.png","language":"Lua","readme":"# thesis.nvim - my (not so) good configuration\nWelp, at first, I would like to tell what differs my config from others. I use [nvim-plugnplay](https://github.com/nvim-plugnplay/pnp-cli.git) plugin manager. It is in alpha stage, yet I'm testing it already. This config proves the fact that pnp is usable.\n\n## Structure\n### Directory overview\n```\n.\n├── after\n│  ├── filetype.lua\n│  └── queries\n│     ├── lua\n│     │  └── highlights.scm\n│     └── query\n│        └── highlights.scm\n├── cfg.jsonc\n├── init.lua\n├── license\n├── lua\n│  ├── minimal\n│  │  ├── core\n│  │  │  └── options.lua\n│  │  ├── core.lua\n│  │  └── manager.lua\n│  └── thesis\n│     ├── caching.lua\n│     ├── core\n│     │  ├── init.lua\n│     │  ├── locale.lua\n│     │  └── options.lua\n│     ├── disable\n│     │  ├── init.lua\n│     │  ├── opts.lua\n│     │  ├── plugins.lua\n│     │  └── providers.lua\n│     ├── manager\n│     │  ├── init.lua\n│     │  └── utils.lua\n│     ├── modules\n│     │  ├── colors\n│     │  │  ├── highlighter.lua\n│     │  │  ├── init.lua\n│     │  │  ├── kanagawa.lua\n│     │  │  └── nvim-treesitter.lua\n│     │  ├── completion\n│     │  │  ├── cmp.lua\n│     │  │  ├── init.lua\n│     │  │  └── luasnip.lua\n│     │  ├── lsp\n│     │  │  ├── init.lua\n│     │  │  ├── lua.lua\n│     │  │  ├── rust.lua\n│     │  │  ├── state.lua\n│     │  │  └── tex.lua\n│     │  ├── mappings\n│     │  │  ├── init.lua\n│     │  │  └── mappy.lua\n│     │  ├── markup\n│     │  │  ├── init.lua\n│     │  │  ├── neorg.lua\n│     │  │  └── vimtex.lua\n│     │  ├── misc\n│     │  │  └── init.lua\n│     │  ├── navigation\n│     │  │  ├── init.lua\n│     │  │  ├── leap.lua\n│     │  │  ├── marks.lua\n│     │  │  ├── surround.lua\n│     │  │  └── telescope.lua\n│     │  └── ui\n│     │     ├── gitsigns.lua\n│     │     ├── heirline.lua\n│     │     ├── init.lua\n│     │     ├── satellite.lua\n│     │     └── sidebar-nvim.lua\n│     ├── sections\n│     │  ├── buffers.lua\n│     │  └── hello.lua\n│     └── utils.lua\n├── pnp.lock.json\n├── readme.md\n└── readme.vim\n```\n### Length overview\n```\n===============================================================================\n Language            Files        Lines         Code     Comments       Blanks\n===============================================================================\n JSON                    1          242          242            0            0\n Lua                    46         1040          931           25           84\n Markdown                1           91            0           90            1\n Scheme                  2           42           29            7            6\n Vim script              1           33           25            7            1\n===============================================================================\n Total                  51         1448         1227          129           92\n===============================================================================\n```\n","funding_links":[],"categories":["Lua"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fn-shift%2Fthesis","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fn-shift%2Fthesis","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fn-shift%2Fthesis/lists"}