Skip to content

Commit 43dccaf

Browse files
committed
Update dotfiles
1 parent 55af72e commit 43dccaf

File tree

5 files changed

+16
-6
lines changed

5 files changed

+16
-6
lines changed

nvim/.config/nvim/lua/custom/lsp.lua

+1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ lsp.dockerls.setup{}
5151
lsp.prismals.setup{}
5252
lsp.tailwindcss.setup{}
5353
lsp.bufls.setup{}
54+
lsp.omnisharp.setup{}
5455

5556
require('luasnip.loaders.from_vscode').lazy_load()
5657
cmp.setup({

nvim/.config/nvim/lua/plugins.lua

+3-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,9 @@ return require('packer').startup(function(use)
8787

8888
use {
8989
"windwp/nvim-autopairs",
90-
config = function() require("nvim-autopairs").setup {} end
90+
config = function() require("nvim-autopairs").setup {
91+
disable_filetype = { "rust" }
92+
} end
9193
}
9294

9395
if packer_bootstrap then

nvim/.config/nvim/plugin/packer_compiled.lua

+5-5
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ _G.packer_plugins = {
147147
url = "https://github.com/jose-elias-alvarez/null-ls.nvim"
148148
},
149149
["nvim-autopairs"] = {
150-
config = { "\27LJ\2\n@\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\19nvim-autopairs\frequire\0" },
150+
config = { "\27LJ\2\ne\0\0\4\0\6\0\t6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\4\0005\3\3\0=\3\5\2B\0\2\1K\0\1\0\21disable_filetype\1\0\0\1\2\0\0\trust\nsetup\19nvim-autopairs\frequire\0" },
151151
loaded = true,
152152
path = "/Users/tim/.local/share/nvim/site/pack/packer/start/nvim-autopairs",
153153
url = "https://github.com/windwp/nvim-autopairs"
@@ -245,10 +245,6 @@ time([[Defining packer_plugins]], false)
245245
time([[Config for nvim-cmp]], true)
246246
require('custom.lsp')
247247
time([[Config for nvim-cmp]], false)
248-
-- Config for: nvim-autopairs
249-
time([[Config for nvim-autopairs]], true)
250-
try_loadstring("\27LJ\2\n@\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\19nvim-autopairs\frequire\0", "config", "nvim-autopairs")
251-
time([[Config for nvim-autopairs]], false)
252248
-- Config for: Comment.nvim
253249
time([[Config for Comment.nvim]], true)
254250
try_loadstring("\27LJ\2\n5\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\nsetup\fComment\frequire\0", "config", "Comment.nvim")
@@ -257,6 +253,10 @@ time([[Config for Comment.nvim]], false)
257253
time([[Config for glow.nvim]], true)
258254
try_loadstring("\27LJ\2\n2\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\nsetup\tglow\frequire\0", "config", "glow.nvim")
259255
time([[Config for glow.nvim]], false)
256+
-- Config for: nvim-autopairs
257+
time([[Config for nvim-autopairs]], true)
258+
try_loadstring("\27LJ\2\ne\0\0\4\0\6\0\t6\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\4\0005\3\3\0=\3\5\2B\0\2\1K\0\1\0\21disable_filetype\1\0\0\1\2\0\0\trust\nsetup\19nvim-autopairs\frequire\0", "config", "nvim-autopairs")
259+
time([[Config for nvim-autopairs]], false)
260260

261261
_G._packer.inside_compile = false
262262
if _G._packer.needs_bufread == true then

scripts/bin/gpg

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/sh
2+
3+
if [ -n "$FUGITIVE" ]; then
4+
set -- --pinentry-mode loopback "$@"
5+
fi
6+
exec /opt/homebrew/bin/gpg "$@"

zsh/.zshrc

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
export ZSH=$HOME/.oh-my-zsh
22
export HISTSIZE=100000
3+
export SAVEHIST=100000
34

45
# ZSH_THEME="agnoster"
56
ZSH_THEME="igeek-modest"

0 commit comments

Comments
 (0)