Fix yasnippet issues, update some ignores.

master
Josiah Ledbetter 3 years ago
parent 08acf570ba
commit e38827d4bf

@ -54,7 +54,8 @@
(use-package yasnippet
:ensure t
:config
(yas-minor-mode-on))
(yas-minor-mode-on)
(yas-global-mode 1))
(use-package fira-code-mode
:custom (fira-code-mode-disabled-ligatures '("[]" "#{" "#(" "#_" "#_(" "x")) ;; List of ligatures to turn off

@ -1,4 +1,4 @@
# -*- mode: snippet -*-
# -*- mode: python -*-
# name: new python project
# key: npp
# --

1
.gitignore vendored

@ -1,3 +1,4 @@
*
.weechat/logs/
.emacs.d/emojis/
.emacs.d/.cache/lsp/

@ -72,3 +72,12 @@ echo -e "\e[31m || HATCHET\e[0m | $OSTYPE"
echo -e "\e[31m ||\e[0m |"
echo ""
# The next line updates PATH for the Google Cloud SDK.
if [ -f '/Users/josiah.ledbetter/google-cloud-sdk/path.zsh.inc' ]; then . '/Users/josiah.ledbetter/google-cloud-sdk/path.zsh.inc'; fi
# The next line enables shell command completion for gcloud.
if [ -f '/Users/josiah.ledbetter/google-cloud-sdk/completion.zsh.inc' ]; then . '/Users/josiah.ledbetter/google-cloud-sdk/completion.zsh.inc'; fi
if [ -e /Users/josiah.ledbetter/.nix-profile/etc/profile.d/nix.sh ]; then . /Users/josiah.ledbetter/.nix-profile/etc/profile.d/nix.sh; fi # added by Nix installer
export PATH="$HOME/.poetry/bin:$PATH"

Loading…
Cancel
Save