commit dcf05ab273cf7c71ab3328919790792a202048fc Author: Daryl Ronningen Date: Sat Oct 14 15:54:14 2023 -0700 Initial User Settings diff --git a/init.lua b/init.lua new file mode 100644 index 0000000..4b81cc0 --- /dev/null +++ b/init.lua @@ -0,0 +1,14 @@ +if vim.g.neovide then + vim.o.guifont = "Liga SFMonoNerdFont:h10" + vim.g.neovide_scale_factor = 1 +end + +return { + updater = { + channel = "nightly", + branch = "nightly", + pin_plugins = false, + show_changelog = true, + auto_quit = true, + }, +} diff --git a/neotree.lua b/neotree.lua new file mode 100644 index 0000000..370d3b1 --- /dev/null +++ b/neotree.lua @@ -0,0 +1,12 @@ +return { + "nvim-neo-tree/neo-tree.nvim", + opts = { + filesystem = { + filtered_items = { + visible = true, + hide_dotfiles = false, + hide_gitignored = true, + }, + }, + }, +} diff --git a/options.lua b/options.lua new file mode 100644 index 0000000..cd06b14 --- /dev/null +++ b/options.lua @@ -0,0 +1,5 @@ +return { + opt = { + relativenumber = false, + }, +} diff --git a/plugins/community.lua b/plugins/community.lua new file mode 100644 index 0000000..6a2f9b8 --- /dev/null +++ b/plugins/community.lua @@ -0,0 +1,10 @@ +return { + "AstroNvim/astrocommunity", + { import = "astrocommunity.pack.typescript-all-in-one" }, + { import = "astrocommunity.pack.lua" }, + { import = "astrocommunity.pack.html-css" }, + { import = "astrocommunity.pack.python" }, + { import = "astrocommunity.editing-support.ultimate-autopair-nvim" }, + { import = "astrocommunity.indent.indent-blankline-nvim" }, + { import = "astrocommunity.indent.mini-indentscope" }, +}