init.lua
init.lua copied to clipboard
https://github.com/ThePrimeagen/init.lua/blob/a184d58880787512c21429e1ab8bea74546dff75/after/plugin/fugitive.lua#L22 It seems that the right way is: ```lua vim.cmd.Git("pull --rebase") ``` But maybe I miss something :) thanks a lot for your sharing :+1:
Since the position of square brackets is `[]` in most (all?) keyboard layouts, it makes sense that the one on the left (`[`) is `previous` and the one to the...
Guessing. using packer.lua for the packer config file doesn't result in running packer. I renamed packer.lua to packer_config.lua and import from the bottom level init.lua.
Reverts #5 and use `nvim_workspace`. Source: [https://github.com/VonHeikemen/lsp-zero.nvim/blob/main/advance-usage.md](https://github.com/VonHeikemen/lsp-zero.nvim/blob/main/advance-usage.md)
Issue : upon relaunching nvim, commands like `:PackerSync` show the error message : "E492: Not an editor command: PackerSync" Going to `/lua/[your_name]/packer.lua` and `:so` the file fixes the issue, so...
Hello everyone, I have followed the video ["0 to LSP : Neovim RC From Scratch"](https://www.youtube.com/watch?v=w7i4amO_zaE) to setup my rust light saber (Thank you so much ThePrimeagen). However, the config is...
This adds [MunifTanjim/prettier.nvim](https://github.com/MunifTanjim/prettier.nvim). There is also a format on save section (commented)
There is no environment variable `HOME` in windows. So, this fails `vim.opt.undodir = os.getenv("HOME") .. "/.vim/undodir"`. This is the solution: ```lua local home = os.getenv("HOME") if (home == nil) then...