New neovim config
Uses lazy nvim and Lua instead of the old Vundle and vimscript setup.
This commit is contained in:
22
NeoVim/.config/nvim/lua/config/lazy.lua
Normal file
22
NeoVim/.config/nvim/lua/config/lazy.lua
Normal file
@@ -0,0 +1,22 @@
|
||||
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
||||
if not (vim.uv or vim.loop).fs_stat(lazypath) then
|
||||
local lazyrepo = "https://github.com/folke/lazy.nvim.git"
|
||||
local out = vim.fn.system({ "git", "clone", "--filter=blob:none", "--branch=stable", lazyrepo, lazypath })
|
||||
if vim.v.shell_error ~= 0 then
|
||||
vim.api.nvim_echo({
|
||||
{ "Failed to clone lazy.nvim:\n", "ErrorMsg" },
|
||||
{ out, "WarningMsg" },
|
||||
{ "\nPress any key to exit..." },
|
||||
}, true, {})
|
||||
vim.fn.getchar()
|
||||
os.exit(1)
|
||||
end
|
||||
end
|
||||
|
||||
vim.opt.rtp:prepend(lazypath)
|
||||
require("lazy").setup({
|
||||
spec = {
|
||||
{ import = "plugins" }
|
||||
},
|
||||
checker = { enabled = true }
|
||||
})
|
||||
10
NeoVim/.config/nvim/lua/plugins/init.lua
Normal file
10
NeoVim/.config/nvim/lua/plugins/init.lua
Normal file
@@ -0,0 +1,10 @@
|
||||
local neosolarized = require ("plugins/neosolarized")
|
||||
local telescope = require ("plugins/telescope")
|
||||
|
||||
return {
|
||||
neosolarized,
|
||||
telescope,
|
||||
{
|
||||
"christoomey/vim-tmux-navigator",
|
||||
}
|
||||
}
|
||||
11
NeoVim/.config/nvim/lua/plugins/neosolarized.lua
Normal file
11
NeoVim/.config/nvim/lua/plugins/neosolarized.lua
Normal file
@@ -0,0 +1,11 @@
|
||||
return {
|
||||
"overcache/NeoSolarized",
|
||||
init = function ()
|
||||
vim.cmd.colorscheme "NeoSolarized"
|
||||
-- Make background transparent
|
||||
vim.cmd.hi "Normal guibg=none"
|
||||
vim.cmd.hi "NonText guibg=none"
|
||||
vim.cmd.hi "Normal ctermbg=none"
|
||||
vim.cmd.hi "NonText ctermbg=none"
|
||||
end
|
||||
}
|
||||
8
NeoVim/.config/nvim/lua/plugins/telescope.lua
Normal file
8
NeoVim/.config/nvim/lua/plugins/telescope.lua
Normal file
@@ -0,0 +1,8 @@
|
||||
return {
|
||||
"nvim-telescope/telescope.nvim",
|
||||
config = function ()
|
||||
local telescope = require("telescope.builtin")
|
||||
vim.keymap.set("n", "<leader>ff", telescope.find_files, {})
|
||||
vim.keymap.set("n", "<leader>ss", telescope.current_buffer_fuzzy_find, {})
|
||||
end
|
||||
}
|
||||
Reference in New Issue
Block a user