Neovim-from-scratch icon indicating copy to clipboard operation
Neovim-from-scratch copied to clipboard

📚 A Neovim config designed from scratch to be understandable

Results 131 Neovim-from-scratch issues
Sort by recently updated
recently updated
newest added

neovim version is `0.6.0` install from brew ``` 处理 /Users/baba/.config/nvim/init.lua 时发生错误: E5113: Error while calling lua chunk: ...ack/packer/start/telescope.nvim/lua/telescope/config.lua:1: module 'plenary.strings' not found: no field package.preload['plenary.strings'] no file './plenary/strings.lua' no file...

What's the conventional way of adding `json` to filetypes which lsp clients for `tsserver` or `eslint` will attach to with this lua-based neovim setup provided in this repository? ``` 2...

https://github.com/LunarVim/Neovim-from-scratch/blob/8cebbf6b111b664aecf8a29039c483ae4db5afe7/lua/user/keymaps.lua#L39 The current code is for Insert mode not Normal. I've added the correct code for Insert and Normal mode below: ``` keymap("i", "", ":m .+1==gi", opts) keymap("i", "", ":m...

Was looking through the [type definitions](https://github.com/hrsh7th/nvim-cmp/blob/da4c071f6bdb1edfa1debc7e1f7842c2d620bb04/lua/cmp/types/cmp.lua#L72-L84) of `cmp`'s setup configuration and comparing them to the the setup table provided in this repo, https://github.com/LunarVim/Neovim-from-scratch/blob/8cebbf6b111b664aecf8a29039c483ae4db5afe7/lua/user/cmp.lua#L118-L121 Is the `confirm_opts` supported by `cmp`? Was...

add this line to the last line of the options.lua vim.cmd("autocmd VimEnter * setlocal formatoptions-=c formatoptions-=r formatoptions-=o")

With either the tokyonight or onedarker colorschemes it appears that characters after TAB are missing but they are actually there (see the words 'return' or 'local'):

Provide a Dockerfile that can be used to create a test environment to try out the Neovim config.

I'm not sure whether it is a bug or a breaking change, but this config stopped working without specifying the `max_width` & `max_height`. How to reproduce the error: 1. open...

I had 2 errors in my bufferline.lua file. 1. I don't know why, but nvim was not able to recognize the guifg / guibg, I fixed it by repllacing guifg...

* This renames the following options: * `guifg` → `fg` * `guibg` → `bg` * `gui = "italic"` → `italic = true` * `indicator_icon` → `indicator.icon` with `indicator.style` Issue: akinsho/bufferline.nvim#387