about summary refs log tree commit diff stats
path: root/hm/soispha/conf/nvim (follow)
Commit message (Collapse)AuthorAge
* refactor(hm/conf/nvim/plgs/{nvim-cmp,vim-tex}): Update to new attr namesSoispha2024-03-10
|
* refactor(treewide): Reformat all files with treefmtSoispha2024-02-20
| | | | | This includes getting all shellscripts to pass shellcheck. To accomplish this, some old scripts were removed
* fix(hm/conf/nix/plgs/lsp/s/openscad): GNU is unfortunately not the best formatSoispha2024-02-14
|
* feat(hm/conf/nix/plgs/lsp/servers/openscad): InitSoispha2024-02-12
|
* feat(hm/conf/nvim/plgs/treesitter): Add custom parser for `yts`Soispha2024-01-19
|
* fix(hm): Move the session variables to their associated serviceSoispha2024-01-13
|
* fix(hm/conf/nvim/plgs/harpoon): Use version locked to the old branchSoispha2023-12-10
|
* feat(treewide): Specify nvim plugins in my flakeSoispha2023-12-09
|
* fix(hm/conf/nvim/plgs/lsp/server/pylyzer): Disable againSoispha2023-12-02
| | | | | Pylyzer seems to be rather useless in comparison to ruff. I am removing it to remove the unnecessary visual distraction.
* fix(sys/impermanence): Persist the postgresql datebase, if it existsSoispha2023-12-02
|
* feat(hm/conf/nvim/plgs/lsp/servers): Add python language serversSoispha2023-12-02
|
* fix(hm/conf/nvim/lsp/rust-analyzer): Don't install rustc and cargoSoispha2023-11-25
|
* fix(hm/conf/nvim/ftplgs/tex): Use newer nvim keymaps apiSoispha2023-11-08
|
* docs(hm/conf/nvim/plgs/treesitter): Improve commentsSoispha2023-11-08
|
* feat(hm/conf/nvim/plgs/lsp/ltex): Also activate in `mail` filesSoispha2023-11-08
|
* fix(hm/conf/nvim/plgs/vim-tex): Use treesitter highlightSoispha2023-11-08
|
* fix(hm/conf/nvim/plgs/harpoon): Enable Telescope extensionSoispha2023-10-19
| | | | Otherwise nixvim will complain, as I also have telescope enabled
* fix(hm/conf/nvim/plgs/leap): Map things to 'j'Soispha2023-10-18
| | | | | | 'j' is both more memorable (*j*ump) and also not yet mapped to something important, as it's a relic of the old vim keys. This frees up 'm' for marks again
* fix(hm/soispha/conf/nvim/plgs/nvim-cmp): Remove buffer sourceSoispha2023-10-17
| | | | | This source was way too distracting, considering that I'm not that keen on having lots of possibly completions.
* fix(hm/soispha/nvim/plgs/nvim-cmp): Disable diagraphsSoispha2023-10-16
|
* feat(hm/conf/nvim/plgs/nvim-cmp): Add sourcesSoispha2023-10-16
|
* fix(hm/conf/nvim/maps): Remove exit after 'o'Soispha2023-10-08
|
* fix(hm/conf/nvim/plgs/telescope/exts/bibtex): Mark action as emptySoispha2023-10-08
|
* fix(hm/conf/nvim): Update to new keymap formatSoispha2023-10-08
|
* fix(hm/conf/nvim/autocmds): Use 'desc' instead of 'description'Soispha2023-10-08
|
* feat(hm/pkgs/scrs/neorg): Add support for opening current task contextSoispha2023-10-01
|
* fix(hm/conf/nvim/files/ftplugin/tex): Add file to correct pathSoispha2023-09-30
|
* fix(hm/conf/nvim/plgs/lsp/ltex): Deactivate in rust, as it's bothersomeSoispha2023-09-19
|
* fix(hm/conf/nvim/plgs/nvim-lint): Remove shellcheck, as bash ls exitsSoispha2023-09-17
| | | | | The Bash language server already runs shellcheck, thus making the explicit call here useless.
* Fix(hm/conf/nvim/plgs/luasnip/todo_snippets): Decapitalize my nameSoispha2023-09-02
|
* Fix(hm/conf/nvim/mappings): Switch `gg` to `uu`Soispha2023-08-30
| | | | | Commit b625cac35a8bacd2cfbb430347fc6b5f918d82db should already have done this, but sort of missed the letters.
* Fix(hm/conf/nvim/mappings): Add missing "change without register" mapSoispha2023-08-30
|
* Feat(hm/conf/nvim/mappings): Add mapping to go to file (<enter>)Soispha2023-08-30
|
* Fix(hm/conf/nvim/mappings): Switch the confirm map from `cc` to `uu`Soispha2023-08-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The amount of words with two c's seems to be bigger than the amount of words with two u's. The amount of duplicate letters in English words (466k words): ``` { 'aa': 250, 'bb': 1706, 'cc': 2370, 'dd': 1819, 'ee': 7231, 'ff': 3057, 'gg': 2107, 'hh': 112, 'ii': 574, 'jj': 6, 'kk': 132, 'll': 18613, 'mm': 3425, 'nn': 3944, 'pp': 3566, 'oo': 7363, 'qq': 4, 'rr': 5747, 'ss': 20062, 'tt': 5815, 'uu': 68, 'vv': 44, 'ww': 82, 'xx': 9, 'yy': 9, 'zz': 564 } ``` Generated with this[1] list and the following python script: ```python def load_words(): with open('words_alpha.txt') as word_file: valid_words = set(word_file.read().split()) return valid_words if __name__ == '__main__': english_words = load_words() d_chars = ['aa', 'bb', 'cc', 'dd', 'ee', 'ff', 'gg', 'hh', 'ii', 'jj', 'kk', 'll', 'mm', 'nn', 'pp', 'oo', 'qq', 'rr', 'ss', 'tt', 'uu', 'vv', 'ww', 'xx', 'yy', 'zz'] hits = { 'aa': 0, 'bb': 0, 'cc': 0, 'dd': 0, 'ee': 0, 'ff': 0, 'gg': 0, 'hh': 0, 'ii': 0, 'jj': 0, 'kk': 0, 'll': 0, 'mm': 0, 'nn': 0, 'pp': 0, 'oo': 0, 'qq': 0, 'rr': 0, 'ss': 0, 'tt': 0, 'uu': 0, 'vv': 0, 'ww': 0, 'xx': 0, 'yy': 0, 'zz': 0 } for word in english_words: for d_char in d_chars: print("checking " + d_char + " for existence in " + word) if d_char in word: print(d_char + " is in " + word) hits[d_char] = hits[d_char] + 1 print(hits) ``` [1]: https://github.com/dwyl/english-words
* Feat(hm/conf/nvim/plgs/flatten-nvim): InitSoispha2023-08-30
|
* Feat(hm/conf/nvim/maps): Add keymaps for tab movementSoispha2023-08-29
|
* Refactor(hm/conf/nvim/plugins): Rename to `plgs` to safe commit msg spaceSoispha2023-08-29
|
* Feat(hm/conf/nvim/plgs/debugprint): InitSoispha2023-08-29
|
* Feat(hm/conf/nvim/autocmds): Add mkdir autocmdSoispha2023-08-29
|
* Feat(hm/conf/nvim/plgs/ltex_extra): InitSoispha2023-08-29
|
* Fix(hm/conf/nvim/plugins/neorg): Add telescope integrationSoispha2023-08-29
|
* Fix(hm/conf/nvim/options): Set `textwidth` to 90, as 120 is just too muchSoispha2023-08-29
|
* Fix(hm/conf/nvim/plugins/neorg): Move dirman workspaces to `~/repos`Soispha2023-08-29
|
* Fix(hm/conf/nvim/plugins/neorg): Disable calendar until nvim >= 0.10Soispha2023-08-29
|
* Fix(treewide): Replace old nerdfont icons with new onesSoispha2023-08-28
| | | | | | | This fix was done automatically with [nerdfix](1). [1]: https://github.com/loichyan/nerdfix
* Fix(hm/conf/nvim/plugins/telescope/symbols): Switch to nixpkgs oneSoispha2023-08-28
|
* Fix(hm/conf/nvim/plugins/femaco): Import `clip_val` localSoispha2023-08-28
|
* Fix(hm/conf/nvim/plugins/femaco): Switch to extra, as that's newerSoispha2023-08-28
|
* Fix(hm/conf/nvim/plugins/neorg): Add entry to modules, to generate themSoispha2023-08-28
|
* Feat(hm/conf/nvim/plugins/neorg): InitSoispha2023-08-27
|