Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 0 additions & 30 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,36 +34,6 @@ jobs:
export PATH="${HOME}/bin:${PATH}"
chezmoi apply

osx-64:
runs-on: macos-13
strategy:
fail-fast: false

steps:
- name: Checkout pull request branch
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Free Disk Space (macOS)
run: |
rm -rf ${HOME}/Library/Developer/CoreSimulator

- name: Set up working directories
run: |
mkdir -p ${HOME}/.local/share/chezmoi
cp -r * ${HOME}/.local/share/chezmoi

- name: Set up chezmoi
run: |
cd ${HOME}
sh -c "$(curl -fsLS get.chezmoi.io)"

- name: Test chezmoi
run: |
export PATH="${HOME}/bin:${PATH}"
chezmoi apply

osx-arm64:
runs-on: macos-14
strategy:
Expand Down
1 change: 1 addition & 0 deletions dot_config/chezmoi/package_list
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,7 @@ pkgconf
plzip
pnpm
pomsky
poppler
prettier
prql-compiler
procs
Expand Down
11 changes: 6 additions & 5 deletions dot_config/nvim/lazyvim.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"extras": [
"lazyvim.plugins.extras.coding.blink",
"lazyvim.plugins.extras.coding.mini-surround",
"lazyvim.plugins.extras.coding.neogen",
"lazyvim.plugins.extras.coding.nvim-cmp",
"lazyvim.plugins.extras.coding.yanky",
"lazyvim.plugins.extras.dap.core",
"lazyvim.plugins.extras.dap.nlua",
Expand All @@ -24,6 +24,7 @@
"lazyvim.plugins.extras.lang.clangd",
"lazyvim.plugins.extras.lang.cmake",
"lazyvim.plugins.extras.lang.docker",
"lazyvim.plugins.extras.lang.dotnet",
"lazyvim.plugins.extras.lang.git",
"lazyvim.plugins.extras.lang.go",
"lazyvim.plugins.extras.lang.haskell",
Expand All @@ -33,7 +34,6 @@
"lazyvim.plugins.extras.lang.markdown",
"lazyvim.plugins.extras.lang.nushell",
"lazyvim.plugins.extras.lang.ocaml",
"lazyvim.plugins.extras.lang.omnisharp",
"lazyvim.plugins.extras.lang.prisma",
"lazyvim.plugins.extras.lang.python",
"lazyvim.plugins.extras.lang.r",
Expand Down Expand Up @@ -61,8 +61,9 @@
"lazyvim.plugins.extras.util.project",
"lazyvim.plugins.extras.util.startuptime"
],
"install_version": 7,
"news": {
"NEWS.md": "10960"
"NEWS.md": "11866"
},
"version": 7
}
"version": 8
}
97 changes: 97 additions & 0 deletions dot_config/nvim/lua/plugins/blink.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
return {
"saghen/blink.cmp",
dependencies = {
{ "mikavilpas/blink-ripgrep.nvim", version = "*" },
{ "Kaiser-Yang/blink-cmp-git" },
{ "ribru17/blink-cmp-spell" },
{ "mgalliou/blink-cmp-tmux" },
{ "bydlw98/blink-cmp-env" },
{ "disrupted/blink-cmp-conventional-commits" },
{ "erooke/blink-cmp-latex" },
{ "alexandre-abrioux/blink-cmp-npm.nvim" },
{ "marcoSven/blink-cmp-yanky" }
},
opts = {
keymap = {
preset = "enter",
["<Tab>"] = { "select_next", "snippet_forward", "fallback" },
["<S-Tab>"] = { "select_prev", "snippet_backward", "fallback" },
},
sources = {
default = {
"lsp",
"buffer",
"snippets",
"path",
-- "ripgrep",
"git",
"spell",
"tmux",
"env",
"conventional_commits",
"latex",
"npm",
"yanky"
},
providers = {
ripgrep = {
module = "blink-ripgrep",
name = "Ripgrep",
opts = {
backend = {
use = "gitgrep-or-ripgrep"
},
},
},
git = {
module = "blink-cmp-git",
name = "Git",
opts = {},
},
spell = {
module = "blink-cmp-spell",
name = "Spell",
opts = {
use_cmp_spelling = true
},
},
tmux = {
module = "blink-cmp-tmux",
name = "Tmux",
opts = {},
},
env = {
module = "blink-cmp-env",
name = "Env",
opts = {},
},
conventional_commits = {
name = 'Conventional Commits',
module = 'blink-cmp-conventional-commits',
enabled = function()
return vim.bo.filetype == 'gitcommit'
end,
opts = {},
},
latex = {
name = "Latex",
module = "blink-cmp-latex",
opts = {
insert_command = false
},
},
npm = {
name = "Npm",
module = "blink-cmp-npm",
async = true,
opts = {}
},
yanky = {
name = "Yank",
module = "blink-yanky",
opts = {},
},
},
}
}
}
12 changes: 12 additions & 0 deletions dot_config/nvim/lua/plugins/jupytext.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
return {
"GCBallesteros/jupytext.nvim",
config = function()
require("jupytext").setup({
style = "markdown",
output_extension = "md",
force_ft = "markdown",
})
end,
-- Depending on your nvim distro or config you may need to make the loading not lazy
lazy=false,
}
128 changes: 0 additions & 128 deletions dot_config/nvim/lua/plugins/nvim-cmp_config.lua

This file was deleted.

3 changes: 3 additions & 0 deletions dot_config/nvim/lua/plugins/plugins.lua
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,7 @@ return {
{ "christoomey/vim-system-copy" },
{ "ojroques/vim-oscyank" },
{ "smoka7/multicursors.nvim" },
{ "GCBallesteros/NotebookNavigator.nvim" },
{ "GCBallesteros/jupytext.nvim" },
{ "benlubas/molten-nvim" },
}
4 changes: 2 additions & 2 deletions dot_config/ranger/rc.conf
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ set vcs_backend_hg disabled
set vcs_backend_bzr disabled

# Use one of the supported image preview protocols
set preview_images false
set preview_images true

# Set the preview image method. Supported methods:
#
Expand All @@ -87,7 +87,7 @@ set preview_images false
# * urxvt-full:
# The same as urxvt but utilizing not only the preview pane but the
# whole terminal window.
set preview_images_method w3m
set preview_images_method iterm2

# Use a unicode "..." character to mark cut-off filenames?
set unicode_ellipsis false
Expand Down