TE1ch0st 3 rokov pred
rodič
commit
991103b175
5 zmenil súbory, kde vykonal 6 pridanie a 34 odobranie
  1. 4 0
      nvim/config_install.sh
  2. 0 0
      nvim/init.vim
  3. 0 0
      nvim/vimtutor_ru.txt
  4. 0 34
      vim/vimrc
  5. 2 0
      zsh/config_install.sh

+ 4 - 0
nvim/config_install.sh

@@ -0,0 +1,4 @@
+#!/bin/bash
+mkdir -p  ~/.config/nvim
+cp init.vim ~/.config/nvim/init.vim
+echo "Nvim config is installed!"

+ 0 - 0
vim/init.vim → nvim/init.vim


+ 0 - 0
vim/vimtutor_ru.txt → nvim/vimtutor_ru.txt


+ 0 - 34
vim/vimrc

@@ -1,34 +0,0 @@
-set expandtab
-set smarttab
-set tabstop=4
-set softtabstop=4
-set shiftwidth=4
-set number
-set foldcolumn=2
-syntax on
-set noerrorbells
-set novisualbell
-set ignorecase
-set smartcase
-set hlsearch
-colorscheme darkblue
-
-" All system-wide defaults are set in $VIMRUNTIME/debian.vim and sourced by
-" the call to :runtime you can find below.  If you wish to change any of those
-" settings, you should do it in this file (/etc/vim/vimrc), since debian.vim
-" will be overwritten everytime an upgrade of the vim packages is performed.
-" It is recommended to make changes after sourcing debian.vim since it alters
-" the value of the 'compatible' option.
-
-runtime! debian.vim
-
-" line enables syntax highlighting by default.
-if has("syntax")
-  syntax on
-endif
-
-" Source a global configuration file if available
-if filereadable("/etc/vim/vimrc.local")
-  source /etc/vim/vimrc.local
-endif
-

+ 2 - 0
zsh/config_install.sh

@@ -1,5 +1,7 @@
+#!/bin/bash
 git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
 git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
 mkdir -p ~/.te1ch0st
 cp -f te1ch0st.py ~/.te1ch0st/te1ch0st.py
 cp -f zshrc ~/.zshrc
+echo "ZSH config is installed!"