Initial User Settings
This commit is contained in:
commit
dcf05ab273
4 changed files with 41 additions and 0 deletions
14
init.lua
Normal file
14
init.lua
Normal 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
12
neotree.lua
Normal 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
5
options.lua
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
return {
|
||||||
|
opt = {
|
||||||
|
relativenumber = false,
|
||||||
|
},
|
||||||
|
}
|
10
plugins/community.lua
Normal file
10
plugins/community.lua
Normal 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" },
|
||||||
|
}
|
Loading…
Reference in a new issue