diff --git a/.emacs.d/emacs-custom.el b/.emacs.d/emacs-custom.el index 2bd4b17..272f5f3 100644 --- a/.emacs.d/emacs-custom.el +++ b/.emacs.d/emacs-custom.el @@ -9,7 +9,7 @@ '(livedown-port 1337) '(package-selected-packages (quote - (org-jira use-package switch-window ox-reveal ox-jira markdown-mode magit htmlize dracula-theme dired-sidebar confluence)))) + (auto-complete use-package switch-window ox-reveal ox-jira org-jira markdown-mode magit htmlize dracula-theme dired-sidebar confluence)))) (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 20dd203..da768d4 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -83,6 +83,12 @@ ; ) ;(setq jiralib-url "https://localhost/") +;; AutoComlete +(use-package auto-complete + :ensure t + ) +(ac-config-default) + ;; Theme (use-package dracula-theme :ensure t diff --git a/.vimrc b/.vimrc index 758ef08..296f782 100644 --- a/.vimrc +++ b/.vimrc @@ -138,4 +138,3 @@ autocmd BufWritePost *.md :Prettier let g:livedown_browser = "browser-x" let g:livedown_autorun = 0 let g:livedown_open = 1 -let g:livedown_port = 4242