summary refs log tree commit diff
path: root/emacs.d/config/fcuny-thrift.el
blob: 9bfa497e6763deb7a29b3e9f7d41eea3048726b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
(eval-when-compile
  (require 'use-package))

(use-package thrift
  :ensure t
  :mode ("\\.thrift\\'" . thrift-mode)
  :config
  (setq thrift-indent-level 2))

(provide 'fcuny-thrift)