Skip to content

Commit

Permalink
добавлена установка локализации: LANGUAGE почему-то теперь нужен
Browse files Browse the repository at this point in the history
  • Loading branch information
shvorin committed Jan 17, 2013
1 parent 4d3d409 commit fe62ec7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .bashrc
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,10 @@ PS2=">>"
INPUTRC="~/.inputrc"

LANG=ru_RU.UTF-8
LANGUAGE=ru_RU.UTF-8
LC_ALL=ru_RU.UTF-8

export LANG LC_ALL
export LANG LANGUAGE LC_ALL
export USERNAME PS1 PS2 INPUTRC http_proxy BASH_ENV PATH

# Read first /etc/inputrc if the variable is not defined, and after the /etc/inputrc
Expand Down
1 change: 1 addition & 0 deletions .emacs
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,4 @@

(load-file "~/.emacs.d/init.el")
(put 'upcase-region 'disabled nil)
(put 'downcase-region 'disabled nil)
2 changes: 1 addition & 1 deletion .emacs.d/init.el
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
(local-set-key "\C-k" 'kill-this-buffer)
(use-global-map global-map)

(setq auto-mode-alist (cons '("\\.cu[h]?$" . c++-mode) auto-mode-alist))
(setq auto-mode-alist (cons '("\\.cu[h]?$" . c++-mode) (cons '("\\.\\(sdc\\|qsf\\)$" . tcl-mode) auto-mode-alist)))

;;;
;;;
Expand Down

0 comments on commit fe62ec7

Please sign in to comment.