added the silver searcher
This commit is contained in:
parent
9c6053bb6c
commit
9da87c86de
4 changed files with 10 additions and 1 deletions
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -59,3 +59,6 @@
|
|||
[submodule ".vim/bundle/YouCompleteMe"]
|
||||
path = .vim/bundle/YouCompleteMe
|
||||
url = https://github.com/Valloric/YouCompleteMe.git
|
||||
[submodule ".vim/bundle/ack.vim"]
|
||||
path = .vim/bundle/ack.vim
|
||||
url = https://github.com/mileszs/ack.vim.git
|
||||
|
|
1
.vim/bundle/ack.vim
Submodule
1
.vim/bundle/ack.vim
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 0a7d28bfb130696f73d122cac99d8903e066c896
|
5
.vimrc
5
.vimrc
|
@ -59,6 +59,11 @@ let g:airline_powerline_fonts = 1
|
|||
let g:airline#extensions#tabline#enabled = 1
|
||||
|
||||
|
||||
" plugins: ag/ack
|
||||
if executable('ag')
|
||||
let g:ackprg = 'ag --vimgrep'
|
||||
endif
|
||||
|
||||
" appearance
|
||||
set number
|
||||
set relativenumber
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
#software and shell
|
||||
sudo dnf -y install vim tmux atop zsh thunderbird thunderbird-enigmail thunderbird-lightning firefox aria2 gajim lm_sensors freecad python3-pip qt5-qtbase-devel qt5-qtwebkit-devel meld whois curl pv tor torsocks nodejs npm terminator gsmartcontrol python-pip mercurial python-devel libxslt-devel libjpeg-turbo-devel conky conky-manager redshift redshift-gtk cmake gtk2-devel intltool gparted wine solaar glances mplayer
|
||||
sudo dnf -y install vim tmux atop zsh thunderbird thunderbird-enigmail thunderbird-lightning firefox aria2 gajim lm_sensors freecad python3-pip qt5-qtbase-devel qt5-qtwebkit-devel meld whois curl pv tor torsocks nodejs npm terminator gsmartcontrol python-pip mercurial python-devel libxslt-devel libjpeg-turbo-devel conky conky-manager redshift redshift-gtk cmake gtk2-devel intltool gparted wine solaar glances mplayer the_silver_searcher
|
||||
FEDORA_VERSION=`rpm -E %fedora`
|
||||
sudo dnf -y install http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$FEDORA_VERSION.noarch.rpm
|
||||
sudo dnf -y install http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$FEDORA_VERSION.noarch.rpm
|
||||
|
|
Loading…
Reference in a new issue