Commit graph

20 commits

Author SHA1 Message Date
Marko Korhonen 0ced314c90
Refactor neovim config file structure
All plugins are now in their own files with their lazy specifications
and configurations. Also moved lazy initialization to init.lua because
it is very compact now
2023-11-18 02:27:14 +02:00
Marko Korhonen 88da85e368
Rename mason module to lsp, packages/init.lua to lazy.lua
Better describes their usage
2023-11-17 16:53:58 +02:00
Marko Korhonen ac829ff2a0
Nvim: Move some keybinds to which-key 2023-06-27 12:40:02 +03:00
Marko Korhonen c5b4cd5ff4
Separate neovide settings to it's own file in nvim config 2023-06-17 14:35:24 +03:00
Marko Korhonen 4b7d694731
Nvim: add highlight on yank 2022-11-09 09:01:45 +02:00
Marko Korhonen bddcb64be8
Reformat all neovim configuration files with stylua 2022-10-26 14:08:20 +03:00
Marko Korhonen 38aadc3eaa
Fix formatting in nvim init.lua 2022-09-03 16:19:22 +03:00
Marko Korhonen 21284ab10d Refine some more keybinds to new format and rework Telescope config 2022-08-24 00:38:10 +03:00
Marko Korhonen 4d94052d70
Nvim: convert keymaps to vim.keymap.set and/or which-key.register 2022-08-24 00:01:06 +03:00
Marko Korhonen 0f738beb9b
Fix scope issues in lspconfig 2022-08-23 19:14:09 +03:00
Marko Korhonen 8643dd3b6b
Refactor nvim packer configuration 2022-08-22 14:57:24 +03:00
Marko Korhonen d4ba7a72d9 Nvim: add telescope 2022-03-02 17:50:32 +02:00
Marko Korhonen facd2b69a2 Nvim: switch from telescope to fzf (I like the search algorithm better) 2022-01-06 12:53:18 +02:00
Marko Korhonen 10d7142b69 Change colorscheme 2021-12-18 00:19:58 +02:00
Marko Korhonen 16cde14ddd Nvim: improve pager mode and other fixes 2021-12-04 11:43:26 +02:00
Marko Korhonen d78c0ae77d Nvim: enable nvim-tree 2021-12-03 20:13:12 +02:00
Marko Korhonen 5789851be9 Neovim: Enable indent-blankline 2021-12-03 09:30:27 +02:00
Marko Korhonen e86d81eb32 Neovim: switch from lspinstall to nvim-lsp-installer, coq_nvim to
nvim-cmp
2021-11-26 18:19:36 +02:00
Marko Korhonen 756cebca40 Neovim: switch completion plugin to coq.nvim 2021-10-06 19:08:38 +03:00
Marko Korhonen c024a40316 Refactor neovim config (#2)
Changes include:

- [x] Use init.lua instead of init.vim
   - Some keybindings are still to be converted
- [x] Use packer as a package manager instead of vim-plug
- [ ] Use built-in lsp instead of coc.nvim
   - [x] Set up language servers
   - [x] Completion
   - [x] Formatting (previously coc-prettier, now neoformat)
   - [ ] Snippets
- [ ] Replace fzf with telescope.nvim
- [x] Implement treesitter syntax highlighting
   - More info: https://github.com/nvim-treesitter/nvim-treesitter

Note that this requires neovim nightly until 0.5 is released

Reviewed-on: #2
Co-authored-by: Marko Korhonen <marko@korhonen.cc>
Co-committed-by: Marko Korhonen <marko@korhonen.cc>
2021-08-08 15:33:23 +03:00