Last active
February 23, 2024 07:43
-
-
Save anova/ed868c233ab0e7c82005547dfd74757e to your computer and use it in GitHub Desktop.
My initial neovim plugins and theme
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 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