summaryrefslogtreecommitdiff
path: root/nvim
diff options
context:
space:
mode:
authorEkaitz Zárraga <ekaitz.zarraga@gmail.com>2016-05-21 12:36:14 +0200
committerEkaitz Zárraga <ekaitz.zarraga@gmail.com>2016-05-21 12:36:14 +0200
commitb1284d9671d3811cbafb5b10d2a0b6b8ec19376d (patch)
tree7fd5e21d05bb1aafb4b867904ed02af641f8e340 /nvim
parente8635d9825063e73eaef67ec68397f4d332471a2 (diff)
NeoVim and Automatic Install:
* Automatic installation file `install.sh` in order to handle NeoVim config. * NeoVim config -> a copy from Vims, check that in the future.
Diffstat (limited to 'nvim')
-rw-r--r--nvim/nvim/ftdetect/markdown.vim2
-rw-r--r--nvim/nvim/ftplugin/c.vim4
-rw-r--r--nvim/nvim/ftplugin/css.vim2
-rw-r--r--nvim/nvim/ftplugin/drowmark.vim27
-rw-r--r--nvim/nvim/ftplugin/groovy.vim2
-rw-r--r--nvim/nvim/ftplugin/html.vim11
-rw-r--r--nvim/nvim/ftplugin/java.vim2
-rw-r--r--nvim/nvim/ftplugin/javascript.vim4
-rw-r--r--nvim/nvim/ftplugin/markdown.vim29
-rw-r--r--nvim/nvim/ftplugin/perl.vim2
-rw-r--r--nvim/nvim/ftplugin/python.vim2
-rw-r--r--nvim/nvim/ftplugin/sh.vim2
-rw-r--r--nvim/nvim/ftplugin/tex.vim11
-rw-r--r--nvim/nvim/ftplugin/vim.vim2
-rw-r--r--nvim/nvim/init.vim67
-rw-r--r--nvim/nvim/shada/main.shadabin0 -> 159 bytes
-rw-r--r--nvim/nvim/spell/en.utf-8.splbin0 -> 609337 bytes
-rw-r--r--nvim/nvim/spell/en.utf-8.sugbin0 -> 556476 bytes
-rw-r--r--nvim/nvim/spell/es.utf-8.splbin0 -> 601019 bytes
-rw-r--r--nvim/nvim/spell/es.utf-8.sugbin0 -> 1912378 bytes
20 files changed, 169 insertions, 0 deletions
diff --git a/nvim/nvim/ftdetect/markdown.vim b/nvim/nvim/ftdetect/markdown.vim
new file mode 100644
index 0000000..51b8df5
--- /dev/null
+++ b/nvim/nvim/ftdetect/markdown.vim
@@ -0,0 +1,2 @@
+" Understand .md as markdown
+autocmd BufNewFile,BufRead *.md set ft=markdown
diff --git a/nvim/nvim/ftplugin/c.vim b/nvim/nvim/ftplugin/c.vim
new file mode 100644
index 0000000..e4d4ca1
--- /dev/null
+++ b/nvim/nvim/ftplugin/c.vim
@@ -0,0 +1,4 @@
+set tabstop=4 softtabstop=0 expandtab shiftwidth=4
+set autoindent
+
+set syntax=c.doxygen
diff --git a/nvim/nvim/ftplugin/css.vim b/nvim/nvim/ftplugin/css.vim
new file mode 100644
index 0000000..6a56808
--- /dev/null
+++ b/nvim/nvim/ftplugin/css.vim
@@ -0,0 +1,2 @@
+set tabstop=2 softtabstop=0 expandtab shiftwidth=2
+set autoindent
diff --git a/nvim/nvim/ftplugin/drowmark.vim b/nvim/nvim/ftplugin/drowmark.vim
new file mode 100644
index 0000000..be65689
--- /dev/null
+++ b/nvim/nvim/ftplugin/drowmark.vim
@@ -0,0 +1,27 @@
+" Spellcheck in markdown (automatic to english)
+setlocal spelllang=es
+setlocal spell
+
+" Textwidth for automatic wrap `gq` is formatting operation
+setlocal textwidth=79
+setlocal formatoptions+=t
+setlocal formatoptions-=l
+
+
+" Highlight where the lines are more than 80 characters wide
+setlocal colorcolumn=80
+highlight ColorColumn ctermbg=LightGreen
+
+" Auto-capitalize script
+augroup SENTENCES
+ au!
+ autocmd InsertCharPre * if &ft=='drowmark' | if search('\v(%^|[.!?]\_s+|\_^\-\s|\_^title\:\s|\n\n)%#', 'bcnw') != 0 | let v:char = toupper(v:char) | endif | endif
+augroup END
+
+" Highlight spelling errors in red and underline
+hi clear SpellBad
+hi SpellBad cterm=underline ctermfg=Red
+
+" Tabs to 2 spaces
+set tabstop=2 softtabstop=0 expandtab shiftwidth=2
+set autoindent
diff --git a/nvim/nvim/ftplugin/groovy.vim b/nvim/nvim/ftplugin/groovy.vim
new file mode 100644
index 0000000..f41f3bf
--- /dev/null
+++ b/nvim/nvim/ftplugin/groovy.vim
@@ -0,0 +1,2 @@
+set tabstop=4 softtabstop=0 expandtab shiftwidth=4
+set autoindent
diff --git a/nvim/nvim/ftplugin/html.vim b/nvim/nvim/ftplugin/html.vim
new file mode 100644
index 0000000..fc0d53a
--- /dev/null
+++ b/nvim/nvim/ftplugin/html.vim
@@ -0,0 +1,11 @@
+set tabstop=2 softtabstop=0 expandtab shiftwidth=2
+set autoindent
+
+" Test some wrapping on the html
+setlocal textwidth=79
+setlocal formatoptions+=t
+
+" Highlight where the lines are more than 80 characters wide
+setlocal colorcolumn=80
+highlight ColorColumn ctermbg=LightGreen
+
diff --git a/nvim/nvim/ftplugin/java.vim b/nvim/nvim/ftplugin/java.vim
new file mode 100644
index 0000000..f41f3bf
--- /dev/null
+++ b/nvim/nvim/ftplugin/java.vim
@@ -0,0 +1,2 @@
+set tabstop=4 softtabstop=0 expandtab shiftwidth=4
+set autoindent
diff --git a/nvim/nvim/ftplugin/javascript.vim b/nvim/nvim/ftplugin/javascript.vim
new file mode 100644
index 0000000..d140ed6
--- /dev/null
+++ b/nvim/nvim/ftplugin/javascript.vim
@@ -0,0 +1,4 @@
+set tabstop=2 softtabstop=0 expandtab shiftwidth=2
+set autoindent
+
+let javaScript_fold=1
diff --git a/nvim/nvim/ftplugin/markdown.vim b/nvim/nvim/ftplugin/markdown.vim
new file mode 100644
index 0000000..f891b35
--- /dev/null
+++ b/nvim/nvim/ftplugin/markdown.vim
@@ -0,0 +1,29 @@
+setlocal syntax=markdown
+
+" Spellcheck in markdown (automatic to english)
+setlocal spelllang=en
+setlocal spell
+
+" Textwidth for automatic wrap `gq` is formatting operation
+setlocal textwidth=79
+setlocal formatoptions+=t
+setlocal formatoptions-=l
+
+
+" Highlight where the lines are more than 80 characters wide
+setlocal colorcolumn=80
+highlight ColorColumn ctermbg=LightGreen
+
+" Auto-capitalize script
+augroup SENTENCES
+ au!
+ autocmd InsertCharPre * if &ft=='markdown' | if search('\v(%^|[.!?]\_s+|\_^\-\s|\_^title\:\s|\n\n)%#', 'bcnw') != 0 | let v:char = toupper(v:char) | endif | endif
+augroup END
+
+" Highlight spelling errors in red and underline
+hi clear SpellBad
+hi SpellBad cterm=underline ctermfg=Red
+
+" Tabs to 2 spaces
+set tabstop=2 softtabstop=0 expandtab shiftwidth=2
+set autoindent
diff --git a/nvim/nvim/ftplugin/perl.vim b/nvim/nvim/ftplugin/perl.vim
new file mode 100644
index 0000000..f41f3bf
--- /dev/null
+++ b/nvim/nvim/ftplugin/perl.vim
@@ -0,0 +1,2 @@
+set tabstop=4 softtabstop=0 expandtab shiftwidth=4
+set autoindent
diff --git a/nvim/nvim/ftplugin/python.vim b/nvim/nvim/ftplugin/python.vim
new file mode 100644
index 0000000..f41f3bf
--- /dev/null
+++ b/nvim/nvim/ftplugin/python.vim
@@ -0,0 +1,2 @@
+set tabstop=4 softtabstop=0 expandtab shiftwidth=4
+set autoindent
diff --git a/nvim/nvim/ftplugin/sh.vim b/nvim/nvim/ftplugin/sh.vim
new file mode 100644
index 0000000..f41f3bf
--- /dev/null
+++ b/nvim/nvim/ftplugin/sh.vim
@@ -0,0 +1,2 @@
+set tabstop=4 softtabstop=0 expandtab shiftwidth=4
+set autoindent
diff --git a/nvim/nvim/ftplugin/tex.vim b/nvim/nvim/ftplugin/tex.vim
new file mode 100644
index 0000000..fc0d53a
--- /dev/null
+++ b/nvim/nvim/ftplugin/tex.vim
@@ -0,0 +1,11 @@
+set tabstop=2 softtabstop=0 expandtab shiftwidth=2
+set autoindent
+
+" Test some wrapping on the html
+setlocal textwidth=79
+setlocal formatoptions+=t
+
+" Highlight where the lines are more than 80 characters wide
+setlocal colorcolumn=80
+highlight ColorColumn ctermbg=LightGreen
+
diff --git a/nvim/nvim/ftplugin/vim.vim b/nvim/nvim/ftplugin/vim.vim
new file mode 100644
index 0000000..f41f3bf
--- /dev/null
+++ b/nvim/nvim/ftplugin/vim.vim
@@ -0,0 +1,2 @@
+set tabstop=4 softtabstop=0 expandtab shiftwidth=4
+set autoindent
diff --git a/nvim/nvim/init.vim b/nvim/nvim/init.vim
new file mode 100644
index 0000000..fcc7f55
--- /dev/null
+++ b/nvim/nvim/init.vim
@@ -0,0 +1,67 @@
+" Vundle stuff ----------------------------------------------
+set nocompatible
+filetype off
+set rtp+=~/.vim/bundle/Vundle.vim
+call vundle#begin()
+
+" let Vundle manage Vundle, required
+Plugin 'VundleVim/Vundle.vim'
+
+" Post to Wordpress using MarkDown
+Plugin 'ekaitz-zarraga/droWMark'
+
+" Navigate in directory tree
+Plugin 'scrooloose/nerdtree'
+
+" Add plugins here
+
+call vundle#end() " required
+" / Vundle stuff end ----------------------------------------
+
+" Allow backspace always
+set backspace=indent,eol,start
+
+" Activate syntax highlighting by default
+syntax on
+
+" Different config for each filetype
+filetype plugin on
+
+" Show trailing spaces
+highlight ExtraWhitespace ctermbg=red guibg=red
+match ExtraWhitespace /\s\+$/
+autocmd BufWinEnter * match ExtraWhitespace /\s\+$/
+autocmd InsertEnter * match ExtraWhitespace /\s\+\%#\@<!$/
+autocmd InsertLeave * match ExtraWhitespace /\s\+$/
+autocmd BufWinLeave * call clearmatches()
+
+" Clear trailing spaces on <F2>
+function TrimWhiteSpace()
+ %s/\s*$//
+ ''
+:endfunction
+nnoremap <F2> :call TrimWhiteSpace()<CR>
+
+" Fold
+set foldmethod=syntax
+set foldlevelstart=99
+
+" HighLight search and map CarrierReturn to remove highlight
+set hlsearch
+nnoremap <CR> :noh<CR><CR>
+
+" Ignore Case in search
+set ignorecase
+set smartcase
+
+" Always show tabline (0=never, 1=when there are at least 2 tabs, 2=always)
+set showtabline=2
+
+" Mouse support
+set mouse=a
+
+" Enable TRUE COLORS
+let $NVIM_TUI_ENABLE_TRUE_COLOR=1
+
+" Set default colorscheme but dark comments -> Torte
+colorscheme torte
diff --git a/nvim/nvim/shada/main.shada b/nvim/nvim/shada/main.shada
new file mode 100644
index 0000000..5bd2ed1
--- /dev/null
+++ b/nvim/nvim/shada/main.shada
Binary files differ
diff --git a/nvim/nvim/spell/en.utf-8.spl b/nvim/nvim/spell/en.utf-8.spl
new file mode 100644
index 0000000..83b9b8f
--- /dev/null
+++ b/nvim/nvim/spell/en.utf-8.spl
Binary files differ
diff --git a/nvim/nvim/spell/en.utf-8.sug b/nvim/nvim/spell/en.utf-8.sug
new file mode 100644
index 0000000..1add0c6
--- /dev/null
+++ b/nvim/nvim/spell/en.utf-8.sug
Binary files differ
diff --git a/nvim/nvim/spell/es.utf-8.spl b/nvim/nvim/spell/es.utf-8.spl
new file mode 100644
index 0000000..62d848d
--- /dev/null
+++ b/nvim/nvim/spell/es.utf-8.spl
Binary files differ
diff --git a/nvim/nvim/spell/es.utf-8.sug b/nvim/nvim/spell/es.utf-8.sug
new file mode 100644
index 0000000..9064321
--- /dev/null
+++ b/nvim/nvim/spell/es.utf-8.sug
Binary files differ