Enable FIDO, global set tab-bar and tab-line config
This commit is contained in:
parent
b7f5657585
commit
74918848fd
4 changed files with 21 additions and 19 deletions
|
@ -110,3 +110,12 @@
|
||||||
(vertical-scroll-bars)))
|
(vertical-scroll-bars)))
|
||||||
|
|
||||||
(setq mouse-wheel-scroll-amount '(1 ((shift) . 1) ((meta)) ((control) . text-scale)))
|
(setq mouse-wheel-scroll-amount '(1 ((shift) . 1) ((meta)) ((control) . text-scale)))
|
||||||
|
|
||||||
|
(require 'ido)
|
||||||
|
(setq ido-enable-flex-matching t)
|
||||||
|
(setq ido-everywhere t)
|
||||||
|
(setq ido-create-new-buffer 'always)
|
||||||
|
;(setq ido-file-extensions-order '(".org" ".lisp" ".py" ".txt" ".el" ".epub"))
|
||||||
|
(ido-mode t)
|
||||||
|
|
||||||
|
(fido-mode 1) ; replace icomplete mode
|
||||||
|
|
|
@ -52,10 +52,14 @@
|
||||||
("leo.org" . [simple-query "dict.leo.org" "https://dict.leo.org/german-english/" ""]))
|
("leo.org" . [simple-query "dict.leo.org" "https://dict.leo.org/german-english/" ""]))
|
||||||
webjump-sample-sites)))
|
webjump-sample-sites)))
|
||||||
|
|
||||||
(use-package tab-bar
|
(setq tab-bar-format
|
||||||
:ensure nil
|
'(tab-bar-format-history
|
||||||
:init (setq tab-bar-mode nil)
|
tab-bar-format-tabs-groups))
|
||||||
:custom
|
(global-set-key (kbd "M-[") 'tab-bar-history-back)
|
||||||
(tab-bar-format
|
(global-set-key (kbd "M-]") 'tab-bar-history-forward)
|
||||||
'(tab-bar-format-history
|
(tab-bar-mode 1)
|
||||||
tab-bar-format-tabs-groups)))
|
|
||||||
|
(setq tab-line-close-button-show nil)
|
||||||
|
(setq tab-line-new-button-show nil)
|
||||||
|
(setq tab-line-tabs-function 'tab-line-tabs-mode-buffers)
|
||||||
|
(global-tab-line-mode 1)
|
||||||
|
|
|
@ -569,13 +569,6 @@
|
||||||
|
|
||||||
(use-package restclient)
|
(use-package restclient)
|
||||||
|
|
||||||
(require 'ido)
|
|
||||||
(setq ido-enable-flex-matching t)
|
|
||||||
(setq ido-everywhere t)
|
|
||||||
(setq ido-create-new-buffer 'always)
|
|
||||||
(setq ido-file-extensions-order '(".org" ".lisp" ".py" ".txt" ".el" ".epub"))
|
|
||||||
(ido-mode t)
|
|
||||||
|
|
||||||
(load "bundle--irc")
|
(load "bundle--irc")
|
||||||
(load "bundle--news")
|
(load "bundle--news")
|
||||||
(load "bundle--email")
|
(load "bundle--email")
|
||||||
|
|
|
@ -47,8 +47,7 @@
|
||||||
'(latex-run-command "xelatex")
|
'(latex-run-command "xelatex")
|
||||||
'(line-spacing nil)
|
'(line-spacing nil)
|
||||||
'(message-user-organization "")
|
'(message-user-organization "")
|
||||||
'(org-agenda-files
|
'(org-agenda-files '("~/Documents/org/agenda/"))
|
||||||
'("agenda/journal.org" "agenda/meetings.org" "agenda/tasks.org" "agenda/logbook.org" "agenda/appointments.org"))
|
|
||||||
'(org-babel-python-command "python3")
|
'(org-babel-python-command "python3")
|
||||||
'(org-directory "~/Documents/org/")
|
'(org-directory "~/Documents/org/")
|
||||||
'(org-modules
|
'(org-modules
|
||||||
|
@ -63,9 +62,6 @@
|
||||||
'(python-shell-interpreter-args "-i --simple-prompt --InteractiveShell.display_page=True")
|
'(python-shell-interpreter-args "-i --simple-prompt --InteractiveShell.display_page=True")
|
||||||
'(scroll-bar-mode nil)
|
'(scroll-bar-mode nil)
|
||||||
'(scroll-step 5)
|
'(scroll-step 5)
|
||||||
'(tab-bar-format
|
|
||||||
'(tab-bar-format-history tab-bar-format-tabs-groups tab-bar-separator tab-bar-format-add-tab tab-bar-format-align-right))
|
|
||||||
'(tab-bar-mode nil)
|
|
||||||
'(tetris-x-colors
|
'(tetris-x-colors
|
||||||
[[229 192 123]
|
[[229 192 123]
|
||||||
[97 175 239]
|
[97 175 239]
|
||||||
|
|
Loading…
Add table
Reference in a new issue