Commit graph

1014 commits

Author SHA1 Message Date
Amaan Qureshi
078250a114
refactor(treesitter)!: rename help to vimdoc (#521) 2023-04-15 23:11:29 +02:00
Folke Lemaitre
79fe0455a0
feat(lualine): added lazy extension 2023-03-31 13:05:36 +02:00
Amaan Qureshi
59eb19835f
feat(treesitter): use Python indents as they've improved greatly (#490) 2023-03-25 09:42:57 +01:00
Folke Lemaitre
381ee0a9fc
fix(mason): removed flake8. You can add it back in your own configs if you need it or add ruff_lsp 2023-03-23 08:00:24 +01:00
Amaan Qureshi
ade4342c42
feat(treesitter): add luadoc (#469) 2023-03-21 07:27:13 +01:00
Folke Lemaitre
df5cbfdbec
feat(mason): compatibility with the new mason registry 2023-03-20 19:56:34 +01:00
Pedro Cattori
a7b25e13fa
fix(alpha): use AlphaFooter highlight for footer section (#461) 2023-03-19 07:58:51 +01:00
Folke Lemaitre
9f5a0f1bd8
feat(lsp): added keymap to see source actions with <leader>cA (useful for tsserver and others) 2023-03-17 16:29:32 +01:00
Folke Lemaitre
c10e550639
feat(lsp): make lsp work when mason-lspconfig is disabled. Fixed #445 2023-03-17 08:04:17 +01:00
Lc
cec000dfd8
fix(icons): replace obsolete icons (#441)
* fix(icons): replace obsolete icons

* fix(icons): bigger icons

* fix(icons): bigger folder icon

---------

Co-authored-by: Folke Lemaitre <folke.lemaitre@gmail.com>
2023-03-16 12:16:55 +01:00
Folke Lemaitre
df6ac591ba
fix(core): set cond=true for LazyVim 2023-03-14 11:17:07 +01:00
Will Norris
bcdcfab020
feat(mini-starter): add Session restore to starter menu (#421)
This mirrors the menu item added in alpha-nvim. I named this "Session
restore" rather than "Restore session", since mini.starter uses the
first letter of the item as the shortcut key.  This way it doesn't
conflict with "Recent files"
2023-03-12 23:00:20 +01:00
Folke Lemaitre
a28885be3f
fix(lsp): allow silent=false for lsp keymaps. Fixes #414 2023-03-12 09:10:45 +01:00
Folke Lemaitre
9f30a2e03a
fix(prettier): extend ensure_installed instead of overwriting it. Fixes #406 2023-03-10 13:55:06 +01:00
Folke Lemaitre
f1dbd097e4
fix(eslint): only run EslintFixAll on buffers where eslint is attached 2023-03-10 08:54:56 +01:00
Folke Lemaitre
aa8bae07ae
feat(prettierd): added an extra for prettierd with null-ls 2023-03-10 08:45:09 +01:00
Folke Lemaitre
75299da24c
feat(eslint): added an extra for eslint lsp that runs EslintFixAll before saving a buffer 2023-03-10 08:44:47 +01:00
Folke Lemaitre
5aad5749a7
feat(null-ls): added .neoconf.json to null-ls root_dir 2023-03-10 08:44:17 +01:00
Folke Lemaitre
5bb2314787
feat(typescript): added null-ls typescript code actions 2023-03-10 08:43:53 +01:00
Folke Lemaitre
23ba877bb0
feat(copilot): better sorting for cmp sources when using copilot 2023-03-06 07:37:37 +01:00
Folke Lemaitre
8f3834bc13
feat(null-ls): added fish_indent and fish diag 2023-03-06 07:37:37 +01:00
Folke Lemaitre
c407ddfe8a
feat(shfmt): added shfmt to null-ls and mason 2023-03-06 07:37:37 +01:00
Folke Lemaitre
079d3967d0
fix(copilot): confirm with replace for copilot only 2023-03-05 17:06:13 +01:00
Folke Lemaitre
e7a515e548
fix(mason): removed installing of shellcheck and shfmt. Use bashls instead 2023-03-05 09:12:16 +01:00
Amaan Qureshi
f441faad03
feat: add luap to nvim-treesitter ensure_installed (#383) 2023-03-05 09:08:51 +01:00
Folke Lemaitre
6fec14e508
fix(typescript): enable function call completion snippets 2023-03-04 10:41:52 +01:00
Amaan Qureshi
9dd2487529
fix: rename more appropriately (also a typo) (#378) 2023-03-04 08:40:37 +01:00
Folke Lemaitre
57c2dcb3a3
feat(neo-tree): added expanders 2023-03-03 20:10:45 +01:00
Folke Lemaitre
04a60e251b
fix(luasnip): added note that jsregexp is optional if it fails to build 2023-03-03 08:28:35 +01:00
Folke Lemaitre
368c65e14b
feat(copilot): added an extra to enable copilot. {import = "lazyvim.plugins.extras.coding.copilot"} 2023-03-03 08:22:20 +01:00
Folke Lemaitre
3a52307505
feat(cmp): added <s-CR> to confirm completion with replace 2023-03-03 08:21:29 +01:00
Folke Lemaitre
d00aade8db
fix(alpha): larger session icon. Fixes #365 2023-03-02 14:17:57 +01:00
Folke Lemaitre
f6f3ce4a9b
fix(luasnip): dont build jsregexp on Windows 2023-03-02 14:15:51 +01:00
Folke Lemaitre
16e4a3f8fd
fix(leap): unpin leap 2023-03-02 08:19:03 +01:00
Brian Di Palma
f9b7406df9
feat(telescope): Add open selected with trouble keymap (#357) 2023-03-01 13:10:04 +01:00
Folke Lemaitre
787ceab031
fix(leap): pin leap for now till flit issue is fixed 2023-03-01 11:39:33 +01:00
Brian Di Palma
59fa83653f
feat(keymaps): Add previous/next trouble/quickfix item keymap [q, ]q (#299) 2023-02-28 11:31:35 +01:00
alexander-born
5abb10b5ab
fix(lsp): only map lsp goto definition when client has definitionProvider (#348)
Co-authored-by: Alexander Born <alexander.born@bmw.de>
2023-02-28 11:29:57 +01:00
Folke Lemaitre
4b37723558
fix(git-signs): larger icons for delete 2023-02-28 10:01:53 +01:00
Sakari
588dc5dd65
fix(icons): replace obsolete Nerd icons (#331) 2023-02-28 09:59:50 +01:00
Folke Lemaitre
d97bf66eed
fix(mini-indentscope): disable indentscope for filetypes during init. Fixes #318 2023-02-28 09:51:29 +01:00
Folke Lemaitre
fc765e9e3d
fix(treesitter): always install all built-in treesitter parsers to prevent queriy issues 2023-02-27 19:38:29 +01:00
Folke Lemaitre
bd62cbe370
fix(luasnips): make install_jsregexp 2023-02-27 10:17:22 +01:00
Folke Lemaitre
079c685831
refactor(treesitter): nil-check 2023-02-20 16:01:02 +01:00
alexander-born
0eef2c2f29
fix(treesitter): nil check #312 (#313)
Co-authored-by: Alexander Born <alexander.born@bmw.de>
2023-02-20 15:58:52 +01:00
Marie
cccdc1cacf
feat(telescope): add <leader>sS for :Telescope lsp_workspace_symbols (#309) 2023-02-20 08:21:39 +01:00
d2kay
6b9f0c0c3c
feat: persist pinned tabs (#304)
Adds `globals` to session opts to persist pinned tabs
2023-02-19 09:56:08 +01:00
Folke Lemaitre
de6a28b781
fix(treesitter): disable indent only for python right now 2023-02-18 13:14:47 +01:00
Folke Lemaitre
329a2daff4
fix(treesitter): disable treesitter indent by default, since it has too many issues. See #297 2023-02-18 12:40:25 +01:00
Folke Lemaitre
8e84dcf85c
fix(mini.surround): don't create empty keymaps. Fixes #296 2023-02-18 09:55:56 +01:00