fix: change some default lazyvim settings

This commit is contained in:
Michel 2023-04-06 11:47:15 +02:00
parent 0f7b0952a2
commit ad5e3cdc76
3 changed files with 27 additions and 2 deletions

View File

@ -1,3 +1,6 @@
-- See `:h map-table` for map modes
-- See `:h stdpath` for paths
--
vim.g.python3_host_prog = vim.fn.stdpath("config") .. "/.direnv/python-3.11.2/bin/python3"
-- bootstrap lazy.nvim, LazyVim and your plugins

View File

@ -1,3 +1,8 @@
-- Options are automatically loaded before lazy.nvim startup
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
-- Add any additional options here
-- Default options: $HOME/.local/share/nvim/lazy/LazyVim/lua/lazyvim/config/options.lua
local opt = vim.opt
opt.autowrite = false
opt.clipboard = ""
opt.tabstop = 8

View File

@ -0,0 +1,17 @@
vim.o.background = "light"
return {
{
"LazyVim/LazyVim",
opts = {
-- colorscheme = "koehler",
},
},
{
"folke/tokyonight.nvim",
opts = {
style = "storm",
-- transparent = true,
},
},
}