From dcf05ab273cf7c71ab3328919790792a202048fc Mon Sep 17 00:00:00 2001 From: Daryl Ronningen Date: Sat, 14 Oct 2023 15:54:14 -0700 Subject: [PATCH] Initial User Settings --- init.lua | 14 ++++++++++++++ neotree.lua | 12 ++++++++++++ options.lua | 5 +++++ plugins/community.lua | 10 ++++++++++ 4 files changed, 41 insertions(+) create mode 100644 init.lua create mode 100644 neotree.lua create mode 100644 options.lua create mode 100644 plugins/community.lua 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" }, +}