Browse Source

Projectile

master
Julio Biason 3 years ago
parent
commit
8501487efc
  1. 3
      .gitmodules
  2. 25
      emacs.d/init.el
  3. 2
      fish/conf.d/aliases.fish
  4. 1
      nvim/pack/colors/start/onedark.vim

3
.gitmodules vendored

@ -22,3 +22,6 @@
[submodule "nvim/pack/project/start/LanguageClient-neovim"]
path = nvim/pack/project/start/LanguageClient-neovim
url = https://github.com/autozimu/LanguageClient-neovim.git
[submodule "nvim/pack/colors/start/onedark.vim"]
path = nvim/pack/colors/start/onedark.vim
url = https://github.com/joshdick/onedark.vim.git

25
emacs.d/init.el

@ -92,7 +92,7 @@
:ensure t
:config (setq doom-themes-enable-bold t
doom-themes-enable-italic t)
(load-theme 'doom-Iosvkem t))
(load-theme 'doom-monokai-spectrum t))
;; highlights the current line
(use-package hlinum
@ -136,8 +136,25 @@
(use-package helm
:ensure t
:config
(setq helm-M-x-fuzzy-match t)
(setq helm-buffers-fuzzy-matching t
helm-recent-fuzzy-match t)
(global-set-key (kbd "M-x") 'helm-M-x)
(global-set-key (kbd "C-x C-f") 'helm-find-files))
(global-set-key (kbd "C-x C-f") 'helm-find-files)
)
;; Project management
(use-package projectile
:ensure t
:init
(projectile-mode +1)
:bind (:map projectile-mode-map
("s-p" . projectile-command-map)
("C-c p" . projectile-command-map))
)
(use-package helm-projectile
:ensure t)
;; auto-pairs
(electric-pair-mode 1)
@ -177,8 +194,10 @@
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(custom-safe-themes
'("835868dcd17131ba8b9619d14c67c127aa18b90a82438c8613586331129dda63" default))
'(package-selected-packages
'(editorconfig diff-hl hlinum use-package rust-mode doom-themes auto-package-update)))
'(helm-projectile projectile editorconfig diff-hl hlinum use-package rust-mode doom-themes auto-package-update)))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.

2
fish/conf.d/aliases.fish

@ -1,7 +1,5 @@
alias vim nvim
alias open xdg-open
alias cat 'bat --paging=never'
alias less 'bat --paging=always'
alias ls exa
alias rcp 'rsync -rclh --progress --'

1
nvim/pack/colors/start/onedark.vim

@ -0,0 +1 @@
Subproject commit ee4b22cbae8a3a434fad832bd89a6981c7c061af
Loading…
Cancel
Save