Skip to content

Instantly share code, notes, and snippets.

@anova
Last active February 23, 2024 07:43
Show Gist options
  • Save anova/ed868c233ab0e7c82005547dfd74757e to your computer and use it in GitHub Desktop.
Save anova/ed868c233ab0e7c82005547dfd74757e to your computer and use it in GitHub Desktop.
My initial neovim plugins and theme
-- vim: set autoindent expandtab shiftwidth=2 tabstop=2:
-- :PlugInstall
-- vim-plug https://github.com/junegunn/vim-plug
local vim = vim
local Plug = vim.fn['plug#']
local PlugBegin = vim.fn['plug#begin']
local PlugEnd = vim.fn['plug#end']
vim.cmd [[language en]]
PlugBegin('~/plugins')
Plug('nvim-lua/plenary.nvim')
Plug('nvim-telescope/telescope.nvim', { ['tag']= '0.1.5' } )
Plug('gpanders/editorconfig.nvim')
Plug('jwalton512/vim-blade')
-- Plug('tpope/vim-vinegar')
Plug('bluz71/vim-moonfly-colors')
Plug('stevearc/oil.nvim')
PlugEnd()
vim.cmd [[colorscheme moonfly]]
-- oil
require("oil").setup()
vim.keymap.set("n", "-", "<CMD>Oil<CR>", { desc = "Open parent directory" })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment