lua fixes
This commit is contained in:
parent
35a65eb852
commit
7a5a4428a2
@ -1,8 +1,5 @@
|
|||||||
require("settings")
|
require("settings_before")
|
||||||
|
|
||||||
-- TODO: Probably don't need this anymore?
|
|
||||||
vim.g.python3_host_prog = '/opt/nvimpython/.nvim.pythonenv/bin/python3'
|
vim.g.python3_host_prog = '/opt/nvimpython/.nvim.pythonenv/bin/python3'
|
||||||
|
|
||||||
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
||||||
if not vim.loop.fs_stat(lazypath) then
|
if not vim.loop.fs_stat(lazypath) then
|
||||||
vim.fn.system({
|
vim.fn.system({
|
||||||
@ -17,3 +14,4 @@ end
|
|||||||
vim.opt.rtp:prepend(lazypath)
|
vim.opt.rtp:prepend(lazypath)
|
||||||
|
|
||||||
require("lazy").setup("plugins")
|
require("lazy").setup("plugins")
|
||||||
|
require("settings_after")
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
vim.g.mapleader = " "
|
|
||||||
vim.g.maplocalleader = " "
|
|
||||||
|
|
||||||
vim.opt.shell = "zsh"
|
vim.opt.shell = "zsh"
|
||||||
|
|
||||||
vim.opt.history = 1000
|
vim.opt.history = 1000
|
3
home/config/nvim/lua/settings_before.lua
Normal file
3
home/config/nvim/lua/settings_before.lua
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
vim.g.mapleader = " "
|
||||||
|
vim.g.maplocalleader = " "
|
||||||
|
|
Loading…
Reference in New Issue
Block a user