diff options
| author | Alec Goncharow <alec@goncharow.dev> | 2024-03-01 20:50:58 -0500 |
|---|---|---|
| committer | Alec Goncharow <alec@goncharow.dev> | 2024-03-01 20:50:58 -0500 |
| commit | 5991cc4137857ab65fcdd5bfc8cd1a6d028a75d9 (patch) | |
| tree | ee0dd93f997c73c98899a627cb6587f72fb4ac99 | |
| parent | 746191705b5d4874cca835fd9195d756dcfd3f2d (diff) | |
. . .
| -rw-r--r-- | .config/nvim/lua/autocomplete.lua | 3 | ||||
| -rw-r--r-- | .config/nvim/lua/settings.lua | 7 | ||||
| -rwxr-xr-x | bin/nocheckin | 2 | ||||
| -rwxr-xr-x | bin/zigup | 2 |
4 files changed, 7 insertions, 7 deletions
diff --git a/.config/nvim/lua/autocomplete.lua b/.config/nvim/lua/autocomplete.lua index 8d624fa..f18cb67 100644 --- a/.config/nvim/lua/autocomplete.lua +++ b/.config/nvim/lua/autocomplete.lua @@ -1,9 +1,6 @@ -- Set up nvim-cmp. local cmp = require 'cmp' --- https://old.reddit.com/r/neovim/comments/ucze6k/q_any_idea_why_i_cannot_do_tab_completion_on/i6eomr5/ -vim.keymap.set('c', '<tab>', '<C-z>', { silent = false }) - cmp.setup({ snippet = { -- REQUIRED - you must specify a snippet engine diff --git a/.config/nvim/lua/settings.lua b/.config/nvim/lua/settings.lua index 3e9207d..8dbbea4 100644 --- a/.config/nvim/lua/settings.lua +++ b/.config/nvim/lua/settings.lua @@ -103,8 +103,11 @@ vim.cmd([[ autocmd Syntax * syntax keyword Todo note NOTE fixme FIXME todo TODO speed SPEED hack HACK safety SAFETY containedin=.*Comment.* ]]) - -vim.cmd('colorscheme yaks') +vim.cmd([[ +colorscheme yaks +set guicursor=n-v-c:block-Cursor +set guicursor+=i:ver25-iCursor +]]) if not vim.g.neovide then vim.cmd([[ diff --git a/bin/nocheckin b/bin/nocheckin index b0c778c..f7d0ce0 100755 --- a/bin/nocheckin +++ b/bin/nocheckin @@ -27,6 +27,6 @@ STATUS=$($SEARCH_CMD | wc -l) if ((STATUS > 0)); then echo -e "$MESSAGE_0" "$STATUS" "$MESSAGE_1"; - ($SEARCH_CMD | xargs "$GREP_CMD"); + ($SEARCH_CMD | xargs $GREP_CMD); exit 1; fi @@ -77,7 +77,7 @@ install_zls() { fi cd "$zls_path" echo "fetching zls" - git fetch origin master:master --depth 1 + git pull echo "building zls" zig build -Doptimize=ReleaseSafe |
