vim.o.tabstop = 4 vim.o.shiftwidth = 0 vim.o.softtabstop = -1 vim.o.shiftround = true vim.o.list = true vim.o.relativenumber = true vim.o.number = true vim.o.expandtab = true vim.o.autoindent = true vim.o.smartindent = true vim.keymap.set("n", "", "wincmd q", { silent = true }) vim.keymap.set("n", "", "wincmd h", { silent = true }) vim.keymap.set("n", "", "wincmd j", { silent = true }) vim.keymap.set("n", "", "wincmd k", { silent = true }) vim.keymap.set("n", "", "wincmd l", { silent = true }) vim.keymap.set("n", "", "bprevious", { silent = true }) vim.keymap.set("n", "", "bnext", { silent = true }) vim.keymap.set("n", "", "bdelete", { silent = true }) vim.g.mapleader = " " vim.g.maplocalleader = " " -- Use lazy.nvim as plugin manager, and load plugin's config local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" if not vim.loop.fs_stat(lazypath) then vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable", -- latest stable release lazypath, }) end vim.opt.rtp:prepend(lazypath) require("lazy").setup("plugins")