New neovim config

Uses lazy nvim and Lua instead of the old Vundle and vimscript setup.
This commit is contained in:
2024-10-14 00:44:29 +01:00
parent e36e3bd66c
commit bc3fae6b88
7 changed files with 78 additions and 108 deletions

View 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 }
})

View File

@@ -0,0 +1,10 @@
local neosolarized = require ("plugins/neosolarized")
local telescope = require ("plugins/telescope")
return {
neosolarized,
telescope,
{
"christoomey/vim-tmux-navigator",
}
}

View 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
}

View 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
}