aboutsummaryrefslogtreecommitdiffstats
path: root/home-manager/soispha/config/neovim (unfollow)
Commit message (Collapse)Author
2023-08-26Refactor(treewide): Abbreviate path namesSoispha
2023-08-26Style(treewide): Format all lua-files makes lua ➛ nix easierSoispha
The files were formatted according to the `.editorconfig` file and with the formatter from [this](1) repo, as it's the only one that fully understands all keys in the `.editorconfig` file. The formatting was chosen in this special (and honestly unconventional) way because moving code from lua to nix is now easier, as the syntax is nearly identical in some places.
2023-08-26Fix(hm/conf/neovim/plugins/colorscheme): Mk todo,fix,&c comments visibleSoispha
2023-08-26Feat(hm/conf/neovim/plugins/todo-comments): InitSoispha
2023-08-26Fix(hm/conf/neovim/autocmds): Only show colorcolumn in insert modeSoispha
2023-08-26Feat(hm/conf/neovim/autocmds): Highlight yanked textSoispha
2023-08-26Docs(treewide): Add a colon after "FIXME"sSoispha
2023-08-26Docs(treewide): Add a colon after every "TODO"Soispha
2023-08-26Feat(hm/conf/neovim/plugins/goto-preview): InitSoispha
2023-08-26Fix(hm/conf/neovim/plugins/lsp-progress): Disable as its quite distractingSoispha
2023-08-26Feat(hm/conf/neovim/plugins/lsp-progress): InitSoispha
2023-08-25Style(hm/conf/neovim): FormatSoispha
2023-08-25Fix(hm/conf/neovim/plugins): Import new onesSoispha
2023-08-25Feat(hm/conf/neovim/plugins/telescope/extensions/symbols): InitSoispha
2023-08-25Feat(hm/conf/neovim/plugins/telescope/extensions/rooter): InitSoispha
2023-08-25Feat(hm/conf/neovim/plugins/telescope/extensions/bibtex): InitSoispha
2023-08-25Feat(hm/conf/neovim/plugins/femaco): InitSoispha
2023-08-25Fix(hm/conf/neovim/plugins): Move raw plugins to their config dirsSoispha
2023-08-25Fix(hm/conf/neovim/plugins/harpoon/mappings): Simplify mappingsSoispha
2023-08-25Fix(hm/conf/neovim/plugins): Import added pluginsSoispha
2023-08-25Fix(hm/conf/neovim/plugins/telescope): InitSoispha
2023-08-25Fix(hm/conf/leap): SquasSoispha
2023-08-24Fix(hm/conf/neovim/options): Reduce timeout as that is used by which-keySoispha
2023-08-24Fix(hm/conf/neovim/mappings): Add description to every mappingSoispha
2023-08-24Feat(hm/conf/neovim/plugins/which-key): InitSoispha
2023-08-24Feat(hm/conf/neovim/plugins/lspkind): InitSoispha
2023-08-24Feat(hm/conf/neovim/plugins/leap): InitSoispha
2023-08-24Feat(hm/conf/neovim/plugins/harpoon): InitSoispha
2023-08-22Fix(hm/conf/neovim/plugs/lsp/ltex): Disable autocompletion while typingSoispha
2023-08-20Fix(hm/conf/neovim/mappings): Use shift space to confirm suggestionsSoispha
2023-08-20Fix(hm/conf/neovim/plugins/luasnip): Correct local value in snippetSoispha
2023-08-20Feat(hm/conf/neovim/plugins/lsp/ccls): InitSoispha
2023-08-19Fix(hm/conf/neovim/plugins/vimtex): Add comment about treesitter supportSoispha
2023-08-19Refactor(hm/conf/neovim/plugins/luasnip/snippets): Remove unnused onesSoispha
2023-08-19Feat(hm/conf/neovim): Use non-treesitter theme for latex filesSoispha
Vim tex doesnn't really not work with treesitter, and nightfox doesn't really work without treesitter thus a new colorscheme was chooses.
2023-08-19Fix(hm/conf/neovim): Put the config file heading at the topSoispha
2023-08-19Fix(hm/conf/neovim): Add linter and formatters to the wrapped neovimSoispha
2023-08-19Fix(hm/conf/neovim): Change mapping for cmp acceptation to 'HH'Soispha
2023-08-19Fix(hm/conf/neovim/nixneovim): Remove as it's replaced by nixvimSoispha
2023-08-19Fix(hm/conf/neovim/plugins/lsp): Remove duplicated setup of capabilitiesSoispha
NixVim automatically sets up the capabilities if the nvim_cmp plugin is activated.
2023-08-19Fix(hm/conf/neovim/plugins/lualine): Correctly qoute stringSoispha
2023-08-19Fix(hm/conf/neovim/plugins/lualine): Use anynomys functionsSoispha
2023-08-19Fix(hm/conf/neovim/plugins/lualine): EnableSoispha
2023-08-19Fix(hm/conf/neovim/plugins/lf): Add fg and bg highlight colorsSoispha
2023-08-19Fix(hm/conf/neovim/autocmds): Add anchor to space replacementSoispha
Without this the following code would be completely minimized: ``` {...}:{ services.lua_language={ enable=true; }; } ``` → ``` {...}:{ services.lua_language={ enable=true; }; } ```. Now it should only strip the whitespace at the end of the lines.
2023-08-19Fix(hm/conf/neovim): Remove duplicate mapping, which mapped n to nSoispha
This would otherwise unmap the mapping of n to "g<up>", thus making upwards movement impossible.
2023-08-19Fix(hm/conf/neovim): Remap '<C-Space>' to '<S-Tab>' as alacritty already uses itSoispha
2023-08-19Fix(hm/conf/neovim/autocmds): Correctly apply the if conditionalSoispha
2023-08-19Fix(hm/conf/neovim/mappings): Turn lf start mapping into a functionSoispha
2023-08-19Fix(hm/conf/neovim/mappings): Correctly specify lua codeSoispha