hackorum / nfs

Neovim config from my Neovim Lua From Scratch playlist on YouTube
96 stars 26 forks source link

Feature request #4

Open Daniel794 opened 2 years ago

Daniel794 commented 2 years ago

Hi, this kinda feature request. Could you please

  1. add staline as an alternative to lualine & bufferline
  2. Add file path to autocompletion (e.g. if I type ~/. I can get ~/.config, ~/.local etc. as options)
  3. Center the PackerSync window like it does in Vapournvim (in this config, it launches in right side of the screen)
  4. Add a theme switcher like the one NVChad Thanks in advance.
sahashirshendu commented 2 years ago

Others I can't say, but for 2, add

{ name = "path" },

in lua/lsp/cmp.lua like

cmp.setup({
    ...
    sources = {
    ...
    { name = "path" },
    }
})