Compare commits
4 Commits
3560f348a7
...
f6bd18cf7d
Author | SHA1 | Date | |
---|---|---|---|
f6bd18cf7d | |||
50fc142407 | |||
2d7807ea60 | |||
5fc464aa6d |
@ -12,6 +12,7 @@ RUN dnf update -y && dnf -y install neovim unzip \
|
|||||||
|
|
||||||
# === setup container user ===
|
# === setup container user ===
|
||||||
RUN useradd -ms /bin/bash user && usermod -aG wheel user && sed -i '/NOPASSWD/s/^#//g' /etc/sudoers
|
RUN useradd -ms /bin/bash user && usermod -aG wheel user && sed -i '/NOPASSWD/s/^#//g' /etc/sudoers
|
||||||
|
RUN mkdir /run/user/1000 && chown user:user /run/user/1000
|
||||||
USER user
|
USER user
|
||||||
WORKDIR /home/user
|
WORKDIR /home/user
|
||||||
COPY config/user/bashrc /home/user/.bashrc
|
COPY config/user/bashrc /home/user/.bashrc
|
||||||
@ -20,7 +21,7 @@ COPY config/user/profile /home/user/.bash_profile
|
|||||||
# === setup neovim ===
|
# === setup neovim ===
|
||||||
RUN git clone --depth 1 https://github.com/LazyVim/starter ~/.config/nvim
|
RUN git clone --depth 1 https://github.com/LazyVim/starter ~/.config/nvim
|
||||||
COPY --chown=user:user config/nvim/plugins /home/user/.config/nvim/lua/plugins
|
COPY --chown=user:user config/nvim/plugins /home/user/.config/nvim/lua/plugins
|
||||||
COPY --chown=user:user config/nvim/config/keymaps.lua /home/user/.config/nvim/lua/config/keymaps.lua
|
COPY --chown=user:user config/nvim/config /home/user/.config/nvim/lua/config
|
||||||
COPY --chown=user:user config/nvim/lazyvim.json /home/user/.config/nvim/lazyvim.json
|
COPY --chown=user:user config/nvim/lazyvim.json /home/user/.config/nvim/lazyvim.json
|
||||||
|
|
||||||
# === setup container ===
|
# === setup container ===
|
||||||
|
53
config/nvim/config/lazy.lua
Normal file
53
config/nvim/config/lazy.lua
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
||||||
|
if not (vim.uv or vim.loop).fs_stat(lazypath) then
|
||||||
|
local lazyrepo = "https://github.com/folke/lazy.nvim.git"
|
||||||
|
local out = vim.fn.system({ "git", "clone", "--filter=blob:none", "--branch=stable", lazyrepo, lazypath })
|
||||||
|
if vim.v.shell_error ~= 0 then
|
||||||
|
vim.api.nvim_echo({
|
||||||
|
{ "Failed to clone lazy.nvim:\n", "ErrorMsg" },
|
||||||
|
{ out, "WarningMsg" },
|
||||||
|
{ "\nPress any key to exit..." },
|
||||||
|
}, true, {})
|
||||||
|
vim.fn.getchar()
|
||||||
|
os.exit(1)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
vim.opt.rtp:prepend(lazypath)
|
||||||
|
|
||||||
|
require("lazy").setup({
|
||||||
|
spec = {
|
||||||
|
-- add LazyVim and import its plugins
|
||||||
|
{ "LazyVim/LazyVim", import = "lazyvim.plugins" },
|
||||||
|
-- import/override with your plugins
|
||||||
|
{ import = "plugins" },
|
||||||
|
},
|
||||||
|
defaults = {
|
||||||
|
-- By default, only LazyVim plugins will be lazy-loaded. Your custom plugins will load during startup.
|
||||||
|
-- If you know what you're doing, you can set this to `true` to have all your custom plugins lazy-loaded by default.
|
||||||
|
lazy = false,
|
||||||
|
-- It's recommended to leave version=false for now, since a lot the plugin that support versioning,
|
||||||
|
-- have outdated releases, which may break your Neovim install.
|
||||||
|
version = false, -- always use the latest git commit
|
||||||
|
-- version = "*", -- try installing the latest stable version for plugins that support semver
|
||||||
|
},
|
||||||
|
install = {},
|
||||||
|
checker = {
|
||||||
|
enabled = true, -- check for plugin updates periodically
|
||||||
|
notify = false, -- notify on update
|
||||||
|
}, -- automatically check for plugin updates
|
||||||
|
performance = {
|
||||||
|
rtp = {
|
||||||
|
-- disable some rtp plugins
|
||||||
|
disabled_plugins = {
|
||||||
|
"gzip",
|
||||||
|
-- "matchit",
|
||||||
|
-- "matchparen",
|
||||||
|
-- "netrwPlugin",
|
||||||
|
"tarPlugin",
|
||||||
|
"tohtml",
|
||||||
|
"tutor",
|
||||||
|
"zipPlugin",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
11
config/nvim/plugins/lsp.lua
Normal file
11
config/nvim/plugins/lsp.lua
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
-- Configure lsp settings.
|
||||||
|
return {
|
||||||
|
{
|
||||||
|
"saghen/blink.cmp",
|
||||||
|
opts = {
|
||||||
|
keymap = {
|
||||||
|
preset = "default",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
2
enter.sh
2
enter.sh
@ -49,7 +49,7 @@ fetch=false
|
|||||||
|
|
||||||
while test $# -gt 0; do
|
while test $# -gt 0; do
|
||||||
case "$1" in
|
case "$1" in
|
||||||
--image | -i) shift && image="$1" ;;
|
--image | -i) shift && fetch=true && image="$1" ;;
|
||||||
--fetch | -f) fetch=true ;;
|
--fetch | -f) fetch=true ;;
|
||||||
-*) log "unknown argument '$1'" 'x' 31 ;;
|
-*) log "unknown argument '$1'" 'x' 31 ;;
|
||||||
*) name="$1" ;;
|
*) name="$1" ;;
|
||||||
|
Loading…
Reference in New Issue
Block a user