Commit graph

73 commits

Author SHA1 Message Date
Marcelo Jacobus
19d8f79b4d Fix doc 2024-09-26 21:47:50 -03:00
Marcelo Jacobus
b59c89856b Add textobj-rubyblock 2024-09-26 21:45:35 -03:00
Marcelo Jacobus
d9a679204b Fix up - relative file path not file name 2024-09-26 20:09:08 -03:00
Marcelo Jacobus
7a05d8b99c Add helper for generating ruby class <leader>irc
Insert ruby class
2024-09-26 20:04:43 -03:00
Marcelo Jacobus
dd2e40d517 Telescope find in buffer 2024-09-11 10:53:32 -03:00
Marcelo Jacobus
5310084735 Disable notify. Too noisy 2024-09-05 09:38:52 -03:00
Marcelo Jacobus
98c1e1edb0 Remap <leader>t so it runs tests 2024-08-29 15:37:54 -03:00
Marcelo Jacobus
5918823664 Attempting new colors 2024-08-22 09:49:48 -03:00
Marcelo Jacobus
af400db6c8 Column color 2024-08-22 09:49:40 -03:00
Marcelo Jacobus
c57404aac3 Disable easy motion 2024-08-02 10:33:12 -03:00
Marcelo Jacobus
738a0d047d Install plugins
- emmet
- easy-motion
- gist
2024-07-23 11:27:25 -03:00
Marcelo Jacobus
83db077930 Install :OpenGithubFile 2024-07-09 14:52:28 -03:00
Marcelo Jacobus
93bcf21190 Disable plugin auto update 2024-07-05 11:17:48 -03:00
Marcelo Jacobus
542b796cf3 Install tabularize 2024-07-02 10:38:42 -03:00
Marcelo Jacobus
5b1fabf1a6 Add notes about old mappings 2024-06-21 12:01:30 -03:00
Marcelo Jacobus
a6999f527d Add some of my old mappings 2024-06-21 11:38:38 -03:00
Marcelo Jacobus
3be0d6edeb Disable noice plugin 2024-06-21 11:28:28 -03:00
Marcelo Jacobus
cfbd3fcacb Supertab completion 2024-06-21 11:19:43 -03:00
Marcelo Jacobus
18edacd5f5 Remove code that does not work 2024-06-21 11:05:28 -03:00
Marcelo Jacobus
7897a96f7e Better completion overlay with nvim-cmp 2024-06-21 11:02:03 -03:00
Marcelo Jacobus
252752d084 Conditionally import PHP extensions 2024-06-21 10:21:16 -03:00
Marcelo Jacobus
0cd9503b50 Install a bunch of extensions 2024-06-20 14:52:40 -03:00
Marcelo Jacobus
3475e5b3ff Install neogen 2024-06-20 14:52:40 -03:00
Marcelo Jacobus
2c4e0683fd Disable relativenumber 2024-06-20 14:52:40 -03:00
Marcelo Jacobus
036c730705 Replace treesitter-context plugin 2024-06-20 14:52:40 -03:00
Marcelo Jacobus
585e355bc1 Install treesiter-context 2024-06-20 14:52:40 -03:00
Marcelo Jacobus
76f79561a9 Add leap 2024-06-20 14:52:40 -03:00
Marcelo Jacobus
0f36485a23 Revert "Install illuminate pluging"
This reverts commit 87bbc5a9dcaf2283d20cf124eab1f34aabb404ef.
2024-06-20 14:52:40 -03:00
Marcelo Jacobus
63af1a65f8 Install illuminate pluging 2024-06-20 14:52:40 -03:00
Marcelo Jacobus
76e12f9686 Install dial plugin 2024-06-20 14:52:40 -03:00
Marcelo Jacobus
79bfdd24d3 Install aerial plugin 2024-06-20 14:52:40 -03:00
Marcelo Jacobus
8fdb617f9a Enable harpoon 2024-06-20 14:52:40 -03:00
Marcelo Jacobus
7deade83a2 Disable dashboard 2024-06-20 14:52:40 -03:00
Marcelo Jacobus
a9e6a346d0 Remove double declaration of variable 2024-06-20 14:52:40 -03:00
Marcelo Jacobus
b77847e9cf Install Ag plugin 2024-06-20 14:52:40 -03:00
Marcelo Jacobus
888d0f48b2 Install rewrap 2024-06-20 14:52:40 -03:00
Marcelo Jacobus
ec0fed3d0e Fix command line 2024-06-20 14:52:40 -03:00
Marcelo Jacobus
277d0d9a9d Add eunuch 2024-06-20 14:52:40 -03:00
Marcelo Jacobus
898a290c44 Install luasnip 2024-06-20 14:52:40 -03:00
Marcelo Jacobus
c1b9d82839 Install copilot 2024-06-20 14:52:40 -03:00
Marcelo Jacobus
b103d97918 Initial setup 2024-06-20 14:52:40 -03:00
Marcelo Jacobus
c540b6ea46 Add basic mappings 2024-06-20 14:52:40 -03:00
DrummyFloyd
4818e4b72f
fix: removed unnecessary env var (#67)
according to https://github.com/LazyVim/LazyVim/issues/2063#issuecomment-2143841592
this is not needed
2024-06-02 17:00:03 +02:00
Alex Ford
b59e7c315b
docs: Update example plugin file to use native snippets with supertab. (#66) 2024-05-19 09:33:42 +02:00
denartha10
75625b29e8
fix: Deperecated syntax in bootstrapping of LazyVim starter (#56)
In the current state of the lazy.nvim repository, certain updates have been made. However, there remains an outdated reference to 'vim.loop' for the bootstrapping process of 'lazyvim' in this start repo for LazyVim, despite 'vim.loop' being deprecated. To rectify this, I suggest a minor alteration by replacing it with the following code snippet:

```lua
if not (vim.uv or vim.loop).fs_stat(lazypath) then
    -- bootstrap
do
```
2024-03-29 17:53:46 +01:00
Folke Lemaitre
914c60ae75
fix: removed some outdated examples 2024-03-21 17:47:04 +01:00
Joshua Davis
741ff3aa70
fix: on_attach deprecated, replace with lsp.on_attach (#45) 2024-01-19 16:12:29 +01:00
Folke Lemaitre
92b2689e6f
docs: simplify cmp-emoji example 2023-10-09 10:28:53 +02:00
Miles Ramage
a13d5c9076
docs: corrected plugin spec location (#25)
Also fixed minor typos and ambiguities.
2023-06-02 23:27:43 +02:00
Folke Lemaitre
d9aa1d0f08
style: typo 2023-05-28 12:22:52 +02:00