Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/n-shift/thesis
https://github.com/n-shift/thesis
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/n-shift/thesis
- Owner: n-shift
- License: gpl-3.0
- Archived: true
- Created: 2022-01-03T17:17:47.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-06-21T18:50:32.000Z (over 2 years ago)
- Last Synced: 2024-08-07T18:35:42.236Z (5 months ago)
- Language: Lua
- Size: 74.2 KB
- Stars: 8
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# thesis.nvim - my (not so) good configuration
Welp, 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.## Structure
### Directory overview
```
.
├── after
│ ├── filetype.lua
│ └── queries
│ ├── lua
│ │ └── highlights.scm
│ └── query
│ └── highlights.scm
├── cfg.jsonc
├── init.lua
├── license
├── lua
│ ├── minimal
│ │ ├── core
│ │ │ └── options.lua
│ │ ├── core.lua
│ │ └── manager.lua
│ └── thesis
│ ├── caching.lua
│ ├── core
│ │ ├── init.lua
│ │ ├── locale.lua
│ │ └── options.lua
│ ├── disable
│ │ ├── init.lua
│ │ ├── opts.lua
│ │ ├── plugins.lua
│ │ └── providers.lua
│ ├── manager
│ │ ├── init.lua
│ │ └── utils.lua
│ ├── modules
│ │ ├── colors
│ │ │ ├── highlighter.lua
│ │ │ ├── init.lua
│ │ │ ├── kanagawa.lua
│ │ │ └── nvim-treesitter.lua
│ │ ├── completion
│ │ │ ├── cmp.lua
│ │ │ ├── init.lua
│ │ │ └── luasnip.lua
│ │ ├── lsp
│ │ │ ├── init.lua
│ │ │ ├── lua.lua
│ │ │ ├── rust.lua
│ │ │ ├── state.lua
│ │ │ └── tex.lua
│ │ ├── mappings
│ │ │ ├── init.lua
│ │ │ └── mappy.lua
│ │ ├── markup
│ │ │ ├── init.lua
│ │ │ ├── neorg.lua
│ │ │ └── vimtex.lua
│ │ ├── misc
│ │ │ └── init.lua
│ │ ├── navigation
│ │ │ ├── init.lua
│ │ │ ├── leap.lua
│ │ │ ├── marks.lua
│ │ │ ├── surround.lua
│ │ │ └── telescope.lua
│ │ └── ui
│ │ ├── gitsigns.lua
│ │ ├── heirline.lua
│ │ ├── init.lua
│ │ ├── satellite.lua
│ │ └── sidebar-nvim.lua
│ ├── sections
│ │ ├── buffers.lua
│ │ └── hello.lua
│ └── utils.lua
├── pnp.lock.json
├── readme.md
└── readme.vim
```
### Length overview
```
===============================================================================
Language Files Lines Code Comments Blanks
===============================================================================
JSON 1 242 242 0 0
Lua 46 1040 931 25 84
Markdown 1 91 0 90 1
Scheme 2 42 29 7 6
Vim script 1 33 25 7 1
===============================================================================
Total 51 1448 1227 129 92
===============================================================================
```