Skip to content

Commit

Permalink
feat: Small fixes (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
mpriscella authored Oct 19, 2024
1 parent c334be0 commit 2f6526e
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .config/nvim/lazy-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"fidget.nvim": { "branch": "main", "commit": "d855eed8a06531a7e8fd0684889b2943f373c469" },
"gitsigns.nvim": { "branch": "main", "commit": "863903631e676b33e8be2acb17512fdc1b80b4fb" },
"indent-blankline.nvim": { "branch": "master", "commit": "e7a4442e055ec953311e77791546238d1eaae507" },
"lazy.nvim": { "branch": "main", "commit": "1159bdccd8910a0fd0914b24d6c3d186689023d9" },
"lazy.nvim": { "branch": "main", "commit": "077102c5bfc578693f12377846d427f49bc50076" },
"lazydev.nvim": { "branch": "main", "commit": "491452cf1ca6f029e90ad0d0368848fac717c6d2" },
"luvit-meta": { "branch": "main", "commit": "ce76f6f6cdc9201523a5875a4471dcfe0186eb60" },
"mason-lspconfig.nvim": { "branch": "main", "commit": "25c11854aa25558ee6c03432edfa0df0217324be" },
Expand Down
3 changes: 3 additions & 0 deletions .config/nvim/lua/custom/plugins/lsp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,9 @@ return {
-- - settings (table): Override the default settings passed when initializing the server.
-- For example, to see the options for `lua_ls`, you could go to: https://luals.github.io/wiki/settings/
local servers = {
bashls = {},
shellcheck = {},
markdownlint = {},
-- clangd = {},
-- gopls = {},
-- pyright = {},
Expand Down
14 changes: 14 additions & 0 deletions .devcontainer/devcontainer-lock.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {
"version": "2.12.0",
"resolved": "ghcr.io/devcontainers/features/docker-in-docker@sha256:5f3e2005aad161ce3ff7700b2603f11935348c039f9166960efd050d69cd3014",
"integrity": "sha256:5f3e2005aad161ce3ff7700b2603f11935348c039f9166960efd050d69cd3014"
},
"ghcr.io/devcontainers/features/github-cli:1": {
"version": "1.0.13",
"resolved": "ghcr.io/devcontainers/features/github-cli@sha256:13b301a039ce9e0bb07d45ea0c106c946cfff01c3b9844bbec6b0c7bacba8de3",
"integrity": "sha256:13b301a039ce9e0bb07d45ea0c106c946cfff01c3b9844bbec6b0c7bacba8de3"
}
}
}
9 changes: 5 additions & 4 deletions dotfiles.sh
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,12 @@ clean_up() {
#######################################
install_dependencies() {
if [ "${ADJUSTED_ID}" = "debian" ]; then
check_packages ack curl exuberant-ctags fzf gawk git jq locales python3 \
ripgrep tar tmux vim virt-what zsh nodejs npm
check_packages ack curl exuberant-ctags fd-find fzf gawk git jq locales python3 \
ripgrep tar tmux vim virt-what zsh
npm install -g tree-sitter-cli
curl --proto '=https' --tlsv1.2 -LsSf https://setup.atuin.sh | sh
curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash -
check_packages nodejs
install_neovim >/dev/null 2>&1
elif [ "${ADJUSTED_ID}" = "darwin" ]; then
brew tap homebrew/cask-fonts
Expand All @@ -122,7 +124,6 @@ install_dependencies() {
jordanbaird-ice jq k6 kind neovim ripgrep shellcheck sslscan step \
terraform-ls tmux tree-sitter yq yt-dlp
fi

clean_up
}

Expand Down Expand Up @@ -195,7 +196,7 @@ config_tmux() {
"$HOME"/.tmux/plugins/tpm/bin/install_plugins
}

files=".ackrc .config/nvim/init.lua .dotfiles.gitconfig .gitattributes .kshell.sh .tmux.conf .vimrc .zshrc"
files=".ackrc .config/nvim .dotfiles.gitconfig .gitattributes .kshell.sh .tmux.conf .vimrc .zshrc"

#######################################
# Symlinks the dotfiles to their correct destination in the home directory.
Expand Down

0 comments on commit 2f6526e

Please sign in to comment.