moved unused configuration
This commit is contained in:
parent
ead40bde0d
commit
7fb887bfd2
2
.gitignore
vendored
2
.gitignore
vendored
@ -5,3 +5,5 @@ conf/home/vim/plugged/**
|
||||
conf/home/vim/.netrwhist
|
||||
conf/config/micro/buffers/**
|
||||
conf/config/micro/plug/**
|
||||
conf/config/nvim/plugged/**
|
||||
conf/config/nvim/.netrwhist
|
||||
|
8
conf/config/nvim/.netrwhist
Normal file
8
conf/config/nvim/.netrwhist
Normal file
@ -0,0 +1,8 @@
|
||||
let g:netrw_dirhistmax =10
|
||||
let g:netrw_dirhistcnt =6
|
||||
let g:netrw_dirhist_6='/home/ale/Documents/projects/wiki/distro'
|
||||
let g:netrw_dirhist_5='/home/ale/.xournalpp'
|
||||
let g:netrw_dirhist_4='/home/ale'
|
||||
let g:netrw_dirhist_3='/home/ale/Documents/Electronics and Electrical Troubleshooting and Repair Handbook + How to Diagnose and Teach Yourself- Mantesh'
|
||||
let g:netrw_dirhist_2='/home/ale/Documents'
|
||||
let g:netrw_dirhist_1='/home/ale'
|
49
conf/config/nvim/init.vim
Normal file
49
conf/config/nvim/init.vim
Normal file
@ -0,0 +1,49 @@
|
||||
" Install vim-plug if it is not already installed, for
|
||||
" Portability's sake
|
||||
if empty(glob('~/.local/share/nvim/site/autoload/plug.vim'))
|
||||
silent !curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs
|
||||
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
||||
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
|
||||
endif
|
||||
|
||||
" Plugins will be downloaded under the specified directory.
|
||||
call plug#begin('~/.config/nvim/plugged')
|
||||
|
||||
" Declare the list of plugins.
|
||||
Plug 'itchyny/lightline.vim'
|
||||
Plug 'tpope/vim-vinegar'
|
||||
Plug 'tpope/vim-surround'
|
||||
Plug 'tpope/vim-fugitive'
|
||||
Plug 'ap/vim-css-color'
|
||||
Plug 'godlygeek/tabular'
|
||||
Plug 'plasticboy/vim-markdown'
|
||||
|
||||
" List ends here. Plugins become visible to Vim after this call.
|
||||
call plug#end()
|
||||
|
||||
" Personal preference stuff
|
||||
set number
|
||||
set tabstop=4
|
||||
set smartcase
|
||||
set colorcolumn=80
|
||||
set cursorline
|
||||
colorscheme industry
|
||||
|
||||
" Use mouse
|
||||
set mouse=a
|
||||
" set ttymouse=sgr
|
||||
|
||||
" Syntax and some plugins
|
||||
:filetype plugin on
|
||||
:syntax on
|
||||
|
||||
" Set the viki root directory
|
||||
" let g:wiki_root = '~/vimwiki'
|
||||
|
||||
" lightline is installed so this is not necessary
|
||||
set noshowmode
|
||||
set laststatus=2
|
||||
if !has('gui_running')
|
||||
set t_Co=256
|
||||
endif
|
||||
|
@ -1 +0,0 @@
|
||||
/home/ale/.local/share/startw/conf/home/vim
|
12
conf/outdated/vim/.netrwhist
Normal file
12
conf/outdated/vim/.netrwhist
Normal file
@ -0,0 +1,12 @@
|
||||
let g:netrw_dirhistmax =10
|
||||
let g:netrw_dirhistcnt =5
|
||||
let g:netrw_dirhist_5='/home/ale/.config/nvim'
|
||||
let g:netrw_dirhist_4='/home/ale/Documents/projects/macrod'
|
||||
let g:netrw_dirhist_3='/home/ale/Documents/projects/distro'
|
||||
let g:netrw_dirhist_2='/home/ale/Documents/projects/wiki/distro'
|
||||
let g:netrw_dirhist_1='/home/ale/Documents/projects/wiki'
|
||||
let g:netrw_dirhist_0='/home/ale/Documents/projects'
|
||||
let g:netrw_dirhist_9='/home/ale/Documents'
|
||||
let g:netrw_dirhist_8='/home/ale'
|
||||
let g:netrw_dirhist_7='/home/ale/Documents/projects/wiki/distro'
|
||||
let g:netrw_dirhist_6='/home/ale/Documents/projects/wiki'
|
1
conf/outdated/vim/plugged/lightline.vim
Submodule
1
conf/outdated/vim/plugged/lightline.vim
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit b8976d2e549b417e5d1c1594fb9034b749976cc0
|
1
conf/outdated/vim/plugged/tabular
Submodule
1
conf/outdated/vim/plugged/tabular
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit 339091ac4dd1f17e225fe7d57b48aff55f99b23a
|
1
conf/outdated/vim/plugged/vim-css-color
Submodule
1
conf/outdated/vim/plugged/vim-css-color
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit 741dd18a35e251ededc0687eea9b8d100d3b83b8
|
1
conf/outdated/vim/plugged/vim-fugitive
Submodule
1
conf/outdated/vim/plugged/vim-fugitive
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit 85e2c73830b6bb01ce7fc3a926d2b25836a253eb
|
1
conf/outdated/vim/plugged/vim-markdown
Submodule
1
conf/outdated/vim/plugged/vim-markdown
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit da5a7ac96f517e0fd6f886bc3fbe27156ca1f946
|
1
conf/outdated/vim/plugged/vim-surround
Submodule
1
conf/outdated/vim/plugged/vim-surround
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit f51a26d3710629d031806305b6c8727189cd1935
|
1
conf/outdated/vim/plugged/vim-vinegar
Submodule
1
conf/outdated/vim/plugged/vim-vinegar
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit fcce70f1403ba4101668a4c960c577bddbd00f06
|
Loading…
Reference in New Issue
Block a user