Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 629 Bytes

File metadata and controls

34 lines (27 loc) · 629 Bytes

Ideas for a fresh Neovim config

  • use fzf for file search instead of telescope
  • greeter
  {
    "goolord/alpha-nvim",
    dependencies = { "nvim-tree/nvim-web-devicons" },
    config = function()
      require("alpha").setup(require("alpha.themes.startify").config)
    end,
  },
  • buffer management
  { "akinsho/bufferline.nvim", version = "*", dependencies = "nvim-tree/nvim-web-devicons" },
  • retrobox, transparent bg
vim.cmd [[
  colorscheme retrobox
  highlight Normal guibg=none
  highlight NonText guibg=none
  highlight Normal ctermbg=none
  highlight NonText ctermbg=none
]]