Commit Graph

419 Commits

Author SHA1 Message Date
Juliano Barbosa 7128ca764c feat: update documentation and configuration files for Neovim setup
Signed-off-by: juliano.barbosa <julianomb@gmail.com>
2025-02-22 14:58:55 -03:00
Juliano Barbosa 76edf81b0a feat: remove custom statusline configuration file
Signed-off-by: juliano.barbosa <julianomb@gmail.com>
2025-02-22 13:03:37 -03:00
Juliano Barbosa 96c5a2ecc3 feat: remove gopls from the plugin list and add kickstart.plugins.debug import
Signed-off-by: juliano.barbosa <julianomb@gmail.com>
2025-02-22 13:02:51 -03:00
Juliano Barbosa 94cd09806e feat: implement mode_manager plugin with enhanced state management
Signed-off-by: juliano.barbosa <julianomb@gmail.com>
2025-02-18 18:44:58 -03:00
Juliano Barbosa f8b3501df1 feat: feat: add comprehensive documentation for Neovim configuration project
Signed-off-by: juliano.barbosa <julianomb@gmail.com>
2025-02-17 21:59:19 -03:00
Juliano Barbosa 57f551ebd9 feat: add base syntax file and remove outdated Cline rules documentation
Signed-off-by: juliano.barbosa <julianomb@gmail.com>
2025-02-17 21:20:01 -03:00
juliano.barbosa 104c6e3c47
Task: ff354eb8-97f2-464e-8d05-f38f0a2df356, Time: 1739313782556 2025-02-11 19:43:03 -03:00
juliano.barbosa ae234c5e5b
feat: add initial documentation for ecommerce project and system architecture
Signed-off-by: juliano.barbosa <julianomb@gmail.com>
2025-02-11 19:40:08 -03:00
juliano.barbosa 04b3252e24
feat: added roo code 2025-02-11 18:54:27 -03:00
Juliano Barbosa 6d71adbc45
docs: update activeContext and progress documentation for clarity and completeness 2025-02-04 17:56:29 -03:00
juliano.barbosa b8fb6c42f6 docs: update project progress and context documentation for clarity and structure
Signed-off-by: juliano.barbosa <julianomb@gmail.com>
2025-02-03 18:45:48 -03:00
juliano.barbosa 0a9b04a7c8 fix: correct punctuation and formatting in activeContext documentation
Signed-off-by: juliano.barbosa <julianomb@gmail.com>
2025-02-03 18:41:45 -03:00
juliano.barbosa a486c5c4b6 feat: add initial documentation for project structure, purpose, and progress
Signed-off-by: juliano.barbosa <julianomb@gmail.com>
2025-02-03 18:09:07 -03:00
juliano.barbosa da9ce274c6 feat: add comprehensive documentation guidelines for Cline's Memory Bank
Signed-off-by: juliano.barbosa <julianomb@gmail.com>
2025-02-03 18:08:55 -03:00
juliano.barbosa 031020cb9d feat: enhance diagnostic keymaps setup and configure diagnostic display
Signed-off-by: juliano.barbosa <julianomb@gmail.com>
2025-02-03 17:56:43 -03:00
Juliano Barbosa cd94dc4bf0
Merge branch 'nvim-lua:master' into master 2025-01-28 18:24:34 -03:00
juliano.barbosa 7867c90aec
feat: update from n590590
Signed-off-by: juliano.barbosa <julianomb@gmail.com>
2025-01-17 09:32:33 -03:00
juliano.barbosa cc89dd6f5f
feat: implement new feature for improved user experience
Signed-off-by: juliano.barbosa <julianomb@gmail.com>
2025-01-15 18:35:03 -03:00
Diorman Colmenares 5bdde24dfb
Use luals 3rd library for luv (#1303) 2025-01-15 14:38:26 -05:00
Nhan Luu ff89769e45
chore: fix typo in bug report issue template (#1306) 2025-01-15 14:37:36 -05:00
Nhan Luu f6abf682ff
chore: remove redundant comment (#1307) 2025-01-15 14:37:03 -05:00
juliano.barbosa b218f9afd8
Merge branch 'update-from-origin'
Signed-off-by: juliano.barbosa <julianomb@gmail.com>
2025-01-15 16:12:48 -03:00
juliano.barbosa 00950762bf
feat: implement new feature for improved user experience
Signed-off-by: juliano.barbosa <julianomb@gmail.com>
2025-01-15 16:11:46 -03:00
juliano.barbosa 73326f6eb3
feat: fixed lua dev
Signed-off-by: juliano.barbosa <julianomb@gmail.com>
2025-01-15 15:57:23 -03:00
juliano.barbosa 795a72140a
feat: updated devcontainer.json for lua developer
Signed-off-by: juliano.barbosa <julianomb@gmail.com>
2025-01-15 15:45:23 -03:00
Juliano Barbosa 7fb1580fd4
feat: add terraform_fmt to lazy
Changes:
- Add terraform_fmt to lazy
2025-01-08 16:20:14 -03:00
Juliano Barbosa ec7e3aacd3
feat: add settings and keymaps for enhanced Neovim configuration 2025-01-08 16:18:12 -03:00
Juliano Barbosa 00f3db6cde
feat: add devcontainer configuration and Dependabot setup 2025-01-08 16:13:06 -03:00
Juliano Barbosa 0a8ce477f7
feat: add devcontainer configuration and Dependabot setup 2025-01-08 16:12:42 -03:00
Juliano Barbosa 6c11325d38
Merge branch 'master' of https://github.com/julianobarbosa/kickstart.nvim.wip 2025-01-08 15:09:24 -03:00
Juliano Barbosa 1b4aad4d8d
feat(wip): added init 2025-01-08 15:09:17 -03:00
Juliano Barbosa 6d095fb18a
Merge branch 'nvim-lua:master' into master 2025-01-08 15:07:28 -03:00
Tomas Gareau db4867acb9
fix: prevent mason setup from being run twice (#1298)
* fix: prevent mason setup from being run twice

Addresses https://github.com/nvim-lua/kickstart.nvim/issues/1297

Currently, we're calling `require('mason').setup(...)` twice:
* once when setting it as a dependency of `nvim-lspconfig` (since we set
	`config = true`)
* once in the `config` function we define for `nvim-lspconfig`

Calling setup twice can cause issues with, e.g., setting the `PATH`
option: you might append Mason's bin dir in one setup call and prepend
it in the other.

We've kept the setup of `mason` in the `nvim-lspconfig` dependencies
table since leaving it to the `config` function caused some
plugin-loading-order related issues in the past. See:
* https://github.com/nvim-lua/kickstart.nvim/pull/210
* https://github.com/nvim-lua/kickstart.nvim/issues/554
* https://github.com/nvim-lua/kickstart.nvim/pull/555
* https://github.com/nvim-lua/kickstart.nvim/pull/865

* docs: tweak comments per review feedback
2025-01-07 10:44:29 -05:00
Juliano Barbosa 6e769795b0
feat: use makefile for terraform commands
Changes:
- use makefile for terraform commands
2024-12-30 17:24:40 -03:00
Juliano Barbosa c0886d6f09
Merge branch 'nvim-lua-master'
Signed-off-by: Hypera User <juliano.barbosa@hypera.com.br>
2024-12-30 17:21:52 -03:00
Juliano Barbosa 631f5aad5c
feat: adde same configuration
Signed-off-by: Hypera User <juliano.barbosa@hypera.com.br>
2024-12-30 17:20:53 -03:00
Juliano Barbosa 96dc72136e
Merge branch 'master' of https://github.com/nvim-lua/kickstart.nvim into nvim-lua-master 2024-12-30 17:19:56 -03:00
Ryan Jensen a8f539562a
Fix which-key delay settings (#1276)
The which-key plugin used to rely on vim.opt.timeoutlen, but it was
updated a few months ago to use its own opt.delay instead.

8ab96b38a2/NEWS.md?plain=1#L10

I set which-key's delay to 0 ms because it makes it feel snappy and
responsive! That way, we give new users a good first impression.
2024-12-29 12:04:10 -05:00
Ihsan Tonuzi 7ddaab3ffd
chore: add pre-issue requirements (#1288)
* chore: add pre-issue requirements

Based on #1285

* docs: add header about documentation

Based on #1285
2024-12-29 12:00:16 -05:00
George e84e187f3c
Fix README.md grammar and typos (#1291) 2024-12-29 11:39:47 -05:00
Juliano Barbosa 99e6a983ff
chore(lazy): add ansiblels, azure_pipelines_ls, and bashls
Changes:
- Add ansiblels
- Add azure_pipelines_ls
- Add bashls
2024-12-15 13:23:06 -03:00
Scott Swensen de44f49101
fix(gitsigns): make visual mode descriptions consistent with normal mode (#1266) 2024-12-15 00:42:39 -05:00
Juliano Barbosa c95cd2d0b3
chore(lazy): add azure pipelines and kubernetes json schema
Changes:
- Add Azure Pipelines and Kubernetes JSON Schema to lazy server
2024-12-13 11:27:33 -03:00
Juliano Barbosa eec6887730
chore(nvim): add azure pipelines and kubernetes json schema to lazy
Changes:
- Add Azure Pipelines and Kubernetes JSON Schema to lazy
2024-12-13 11:27:03 -03:00
ben fleis bcdb4cd252
Issue 1249 which key comments (#1263)
* Tweak outdated comment about lazy's `config` key usage.

Remove outdated comment describing use of `config` key, replacing with
corrected `opt` key note.

Fixes #1249

* fix typo opt -> opts

Fixes #1250
2024-12-12 16:26:20 -05:00
Artem Dragunov a2df3ea9eb
Use consistent syntax style for { ... } "pseudocode" (#1247)
```
require('gitsigns').setup({ ... })
```

This was the first occurrence

It may be nice to have the same style everywhere

Cosmetic change (just to make docs/comments even more perfect)
2024-12-12 10:51:58 -05:00
ben fleis 7bc9d19a4d
Tweak outdated comment about lazy's `config` key usage. (#1250)
Remove outdated comment describing use of `config` key, replacing with
corrected `opt` key note.

Fixes #1249
2024-12-12 10:50:55 -05:00
Miha 8d1ef972bc
fix: which-key comment typo (#1227) 2024-11-20 08:41:50 -05:00
Anjishnu Banerjee 9dfb1b230f
Fix nvim-dap not lazy loading (#1216)
* Fix nvim-dap not lazy loading

The keys property had local variables 'dap' and 'dap-ui' that used `require` and prevented all DAP related plugins from lazy-loading.
Fixed this by changing keys to a table and substituting the local variables with a lamba function

* Make debug keybind descriptions more consistent
2024-11-20 08:40:51 -05:00
gloomy-lemon-debatable e5dc5f6d1c
feat: Change to prepare for upcoming deprecation of configuring diagnostic-signs using sign_define() (#1232) 2024-11-20 08:37:22 -05:00