fix: change some default lazyvim settings
This commit is contained in:
parent
0f7b0952a2
commit
ad5e3cdc76
3
init.lua
3
init.lua
@ -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
|
||||
|
@ -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
|
||||
|
17
lua/plugins/colorscheme.lua
Normal file
17
lua/plugins/colorscheme.lua
Normal file
@ -0,0 +1,17 @@
|
||||
vim.o.background = "light"
|
||||
|
||||
return {
|
||||
{
|
||||
"LazyVim/LazyVim",
|
||||
opts = {
|
||||
-- colorscheme = "koehler",
|
||||
},
|
||||
},
|
||||
{
|
||||
"folke/tokyonight.nvim",
|
||||
opts = {
|
||||
style = "storm",
|
||||
-- transparent = true,
|
||||
},
|
||||
},
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user