mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-02-02 18:43:46 +00:00
Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6d31371af4 | |||
| c2250ee80c | |||
| a1d075fc0d | |||
| a3cc12aae1 | |||
| 808748a050 | |||
|
|
e29507ee61 | ||
| bd6408b024 | |||
| 45cf9ef2a5 | |||
| 5cc78e14e4 | |||
| 5683809e18 | |||
| 723d40a704 | |||
|
|
55ce79d9d1 |
23
.github/workflows/changelog.yml
vendored
Normal file
23
.github/workflows/changelog.yml
vendored
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
---
|
||||||
|
name: Debug Changelog # Workflow name displayed on GitHub
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch: # Trigger manually
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
debug-changelog:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Create changelog text
|
||||||
|
id: changelog
|
||||||
|
uses: loopwerk/tag-changelog@v1
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
- name: "Echo results"
|
||||||
|
id: output-changelog
|
||||||
|
run: |
|
||||||
|
echo "${{ steps.changelog.outputs.changes }}"
|
||||||
|
|
||||||
2
.github/workflows/new-release.yml
vendored
2
.github/workflows/new-release.yml
vendored
@@ -38,7 +38,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Create release
|
- name: Create release
|
||||||
if: env.DAILY_VERSION_CREATED
|
if: env.DAILY_VERSION_CREATED
|
||||||
uses: actions/github-script@v5.2.0
|
uses: actions/github-script@v6.4.1
|
||||||
with:
|
with:
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
script: |
|
script: |
|
||||||
|
|||||||
4
.github/workflows/update-submodules.yml
vendored
4
.github/workflows/update-submodules.yml
vendored
@@ -1,6 +1,6 @@
|
|||||||
name: Update submodules
|
name: Update submodules
|
||||||
on:
|
on:
|
||||||
schedule: [cron: 0 6 * * 0]
|
schedule: [cron: 0 3 * * *]
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
@@ -26,7 +26,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Update submodules
|
- name: Update submodules
|
||||||
run: |
|
run: |
|
||||||
if git commit -am"Update submodules (automated)
|
if git commit -am"chore(git): Update submodules (automated)
|
||||||
|
|
||||||
$(git submodule --quiet foreach \
|
$(git submodule --quiet foreach \
|
||||||
'tag="$(git describe --tags --abbrev=0 origin/HEAD)"
|
'tag="$(git describe --tags --abbrev=0 origin/HEAD)"
|
||||||
|
|||||||
@@ -4,4 +4,9 @@ email = ismo.vuorinen@vincit.fi
|
|||||||
|
|
||||||
[home]
|
[home]
|
||||||
name = Ismo Vuorinen
|
name = Ismo Vuorinen
|
||||||
email = ismo@vuorinen.net
|
email = ismo@ivuorinen.net
|
||||||
|
|
||||||
|
[github]
|
||||||
|
name = ivuorinen
|
||||||
|
email = ivuorinen@users.noreply.github.com
|
||||||
|
|
||||||
|
|||||||
@@ -5,23 +5,7 @@ return { -- use mason-lspconfig to configure LSP installations
|
|||||||
-- overrides `require("mason-lspconfig").setup(...)`
|
-- overrides `require("mason-lspconfig").setup(...)`
|
||||||
opts = {
|
opts = {
|
||||||
ensure_installed = {
|
ensure_installed = {
|
||||||
"ansiblels",
|
|
||||||
"bashls",
|
|
||||||
"clangd",
|
|
||||||
"codeqlls",
|
|
||||||
"cssls",
|
|
||||||
"diagnosticls",
|
"diagnosticls",
|
||||||
"eslint",
|
|
||||||
"graphql",
|
|
||||||
"html",
|
|
||||||
"intelephense",
|
|
||||||
"jsonls",
|
|
||||||
"psalm",
|
|
||||||
"stylelint_lsp",
|
|
||||||
"tailwindcss",
|
|
||||||
"tsserver",
|
|
||||||
"vuels",
|
|
||||||
"yamlls",
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}, -- use mason-null-ls to configure Formatters/Linter installation for null-ls sources
|
}, -- use mason-null-ls to configure Formatters/Linter installation for null-ls sources
|
||||||
|
|||||||
@@ -42,7 +42,6 @@ return {
|
|||||||
null_ls.builtins.formatting.isort,
|
null_ls.builtins.formatting.isort,
|
||||||
null_ls.builtins.formatting.jq,
|
null_ls.builtins.formatting.jq,
|
||||||
null_ls.builtins.formatting.phpcsfixer,
|
null_ls.builtins.formatting.phpcsfixer,
|
||||||
null_ls.builtins.formatting.prettierd,
|
|
||||||
null_ls.builtins.formatting.shfmt.with {
|
null_ls.builtins.formatting.shfmt.with {
|
||||||
args = { "-i", "1", "-bn", "-ci", "-sr", "-kb", "-fn" },
|
args = { "-i", "1", "-bn", "-ci", "-sr", "-kb", "-fn" },
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -25,9 +25,9 @@ export HOMEBREW_PKG="$HOMEBREW/opt"
|
|||||||
export HOMEBREW_NO_ENV_HINTS=1
|
export HOMEBREW_NO_ENV_HINTS=1
|
||||||
|
|
||||||
path_append "/usr/local/bin"
|
path_append "/usr/local/bin"
|
||||||
path_append "$HOMEBREW_SBIN"
|
path_prepend "$HOMEBREW_SBIN"
|
||||||
path_append "$HOMEBREW_BIN"
|
path_prepend "$HOMEBREW_BIN"
|
||||||
path_append "$XDG_BIN_HOME"
|
path_prepend "$XDG_BIN_HOME"
|
||||||
|
|
||||||
# brew, https://brew.sh
|
# brew, https://brew.sh
|
||||||
have brew && {
|
have brew && {
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
# vim: filetype=zsh
|
# vim: filetype=zsh
|
||||||
source "$DOTFILES/scripts/shared.sh"
|
source "$DOTFILES/scripts/shared.sh"
|
||||||
|
|
||||||
export LC_ALL=fi_FI.utf8
|
export LC_ALL=fi_FI.UTF-8
|
||||||
|
|
||||||
# Bash completion file location
|
# Bash completion file location
|
||||||
export BASH_COMPLETION_USER_FILE="${XDG_CONFIG_HOME}/bash-completion/bash_completion"
|
export BASH_COMPLETION_USER_FILE="${XDG_CONFIG_HOME}/bash-completion/bash_completion"
|
||||||
|
|||||||
Submodule config/nvim updated: b17ca3c324...0b723ec1fb
Submodule config/tmux/plugins/tpm updated: 1ff32085b2...99469c4a9b
Reference in New Issue
Block a user