ソースを参照

Some maintenance

Kevin Heinicke 3 年 前
コミット
9b80b6c4f5
4 ファイル変更19 行追加4 行削除
  1. 6 0
      README.md
  2. 9 4
      coc-extensions.json
  3. 2 0
      nvimrc
  4. 2 0
      tmux.conf

+ 6 - 0
README.md

@@ -50,3 +50,9 @@ compinit
 Weirdly, this reported "compinit: insecure directories". After a few tries, it
 "just worked"...  If this is not the case, [this github issue might
 help](https://github.com/zsh-users/zsh-completions/issues/433).
+
+## Power settings on my old-ish MBP
+These should be fine, as per `man pmset`
+```
+sudo pmset -b hibernatemode 25 standbydelaylow 600 standbydelayhigh 1200
+```

+ 9 - 4
coc-extensions.json

@@ -1,8 +1,13 @@
 {
   "dependencies": {
     "coc-json": ">=1.3.6",
-    "coc-metals": ">=1.0.7",
-    "coc-pyright": ">=1.1.164",
+    "coc-pyright": ">=1.1.194",
+    "coc-toml": ">=1.1.0",
+    "coc-vetur": ">=1.2.5",
+    "coc-vimtex": ">=1.0.4",
     "coc-yaml": ">=1.4.2"
-  }
-}
+  },
+  "disabled": [],
+  "locked": [],
+  "lastUpdate": 1665865538302
+}

+ 2 - 0
nvimrc

@@ -36,6 +36,8 @@ Plug 'glench/vim-jinja2-syntax'
 Plug 'fatih/vim-go'
 Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
 Plug 'junegunn/fzf.vim'
+Plug 'KabbAmine/vCoolor.vim'
+Plug 'leafOfTree/vim-vue-plugin'
 
 " All of your Plugins must be added before the following line
 call plug#end()  " required

+ 2 - 0
tmux.conf

@@ -26,6 +26,8 @@ bind -n WheelUpPane if-shell -F -t = "#{mouse_any_flag}" "send-keys -M" "if -Ft=
 
 # try to use correct colors
 set -g default-terminal screen-256color
+# 
+set-option -sa terminal-overrides ',xterm-256colo:RGB'
 
 # reload tmux config
 bind r source-file ~/.tmux.conf \; display-message "~/.tmux.conf reloaded"