Initial User Settings

This commit is contained in:
Daryl Ronningen 2023-10-14 15:54:14 -07:00
commit dcf05ab273
Signed by: Daryl Ronningen
GPG key ID: FD23F0C934A5EC6B
4 changed files with 41 additions and 0 deletions

14
init.lua Normal file
View file

@ -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,
},
}

12
neotree.lua Normal file
View file

@ -0,0 +1,12 @@
return {
"nvim-neo-tree/neo-tree.nvim",
opts = {
filesystem = {
filtered_items = {
visible = true,
hide_dotfiles = false,
hide_gitignored = true,
},
},
},
}

5
options.lua Normal file
View file

@ -0,0 +1,5 @@
return {
opt = {
relativenumber = false,
},
}

10
plugins/community.lua Normal file
View file

@ -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" },
}