diff --git a/init.lua b/init.lua index 9a1ea0b..242f894 100644 --- a/init.lua +++ b/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 diff --git a/lua/config/options.lua b/lua/config/options.lua index 3ea1454..c93590e 100644 --- a/lua/config/options.lua +++ b/lua/config/options.lua @@ -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 diff --git a/lua/plugins/colorscheme.lua b/lua/plugins/colorscheme.lua new file mode 100644 index 0000000..333a126 --- /dev/null +++ b/lua/plugins/colorscheme.lua @@ -0,0 +1,17 @@ +vim.o.background = "light" + +return { + { + "LazyVim/LazyVim", + opts = { + -- colorscheme = "koehler", + }, + }, + { + "folke/tokyonight.nvim", + opts = { + style = "storm", + -- transparent = true, + }, + }, +}