Merge branch 'master' of ssh://git.joshuabell.xyz:3032/nvim
This commit is contained in:
commit
3d9d5258b7
2 changed files with 14 additions and 6 deletions
|
@ -346,6 +346,10 @@
|
||||||
mkdir -p "$XDG_RUNTIME_DIR"
|
mkdir -p "$XDG_RUNTIME_DIR"
|
||||||
ln -sf /run/user/$(id -u)/wayland-0 "$XDG_RUNTIME_DIR/wayland-0"
|
ln -sf /run/user/$(id -u)/wayland-0 "$XDG_RUNTIME_DIR/wayland-0"
|
||||||
fi
|
fi
|
||||||
|
if [ ! -S "$XDG_RUNTIME_DIR/wayland-1" ]; then
|
||||||
|
mkdir -p "$XDG_RUNTIME_DIR"
|
||||||
|
ln -sf /run/user/$(id -u)/wayland-1 "$XDG_RUNTIME_DIR/wayland-1"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
''
|
''
|
||||||
# Clear proxy environment variables
|
# Clear proxy environment variables
|
||||||
|
|
|
@ -54,13 +54,15 @@ local function smart_tab_name()
|
||||||
"index%..*",
|
"index%..*",
|
||||||
"mod%..*",
|
"mod%..*",
|
||||||
"Dockerfile",
|
"Dockerfile",
|
||||||
|
"Dockerfile.*",
|
||||||
|
".envrc",
|
||||||
".env",
|
".env",
|
||||||
".env%..*",
|
".env%..*",
|
||||||
"router%..*",
|
"router%..*",
|
||||||
"controller%..*",
|
"controller%..*",
|
||||||
"service%..*",
|
"service%..*",
|
||||||
"utils%..*",
|
"utils%..*",
|
||||||
"util%..*",
|
"util%..*",
|
||||||
"README%..*",
|
"README%..*",
|
||||||
"LICENSE",
|
"LICENSE",
|
||||||
"Makefile",
|
"Makefile",
|
||||||
|
@ -197,6 +199,9 @@ local function smart_tab_name()
|
||||||
"cronhub%..*",
|
"cronhub%..*",
|
||||||
"cronitor%..*",
|
"cronitor%..*",
|
||||||
"healthchecks.io%..*",
|
"healthchecks.io%..*",
|
||||||
|
"flake.*",
|
||||||
|
"configuration.nix",
|
||||||
|
"hardware-configuration.nix",
|
||||||
}
|
}
|
||||||
|
|
||||||
-- Check if the filename matches any pattern in the whitelist
|
-- Check if the filename matches any pattern in the whitelist
|
||||||
|
@ -210,7 +215,6 @@ local function smart_tab_name()
|
||||||
return filename
|
return filename
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
"nvim-lualine/lualine.nvim",
|
"nvim-lualine/lualine.nvim",
|
||||||
-- dependencies = { { "folke/noice.nvim", optional = true } },
|
-- dependencies = { { "folke/noice.nvim", optional = true } },
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue