Compare commits

...
3 Commits
Author SHA1 Message Date
nortegaandnortega 36ac19b609 List whitespace characters. 2026-07-16 13:48:14 +02:00
nortega d589b69bfa Modify variables for vim-licenser. 2026-07-10 16:54:53 +02:00
nortega 07f1f36e14 Switch to using my own licenser software. 2026-07-10 16:28:10 +02:00
+7 -9
View File
@@ -8,7 +8,6 @@ Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes' Plug 'vim-airline/vim-airline-themes'
Plug 'scrooloose/nerdcommenter' Plug 'scrooloose/nerdcommenter'
Plug 'javier-lopez/sprunge.vim' Plug 'javier-lopez/sprunge.vim'
Plug 'vim-scripts/Trailer-Trash'
Plug 'vim-scripts/bad-whitespace' Plug 'vim-scripts/bad-whitespace'
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } } Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
Plug 'junegunn/fzf.vim' Plug 'junegunn/fzf.vim'
@@ -17,7 +16,7 @@ Plug 'vim-scripts/scons.vim'
Plug 'danro/rename.vim' Plug 'danro/rename.vim'
Plug 'ciaranm/detectindent' Plug 'ciaranm/detectindent'
Plug 'jiangmiao/auto-pairs' Plug 'jiangmiao/auto-pairs'
Plug 'antoyo/vim-licenses' Plug 'https://code.ortegas.org/nortega/vim-licenser.git'
Plug 'flazz/vim-colorschemes' Plug 'flazz/vim-colorschemes'
Plug 'xiyaowong/transparent.nvim' Plug 'xiyaowong/transparent.nvim'
Plug 'neoclide/coc.nvim', {'branch': 'release'} Plug 'neoclide/coc.nvim', {'branch': 'release'}
@@ -31,8 +30,8 @@ filetype plugin on
" indentation " indentation
set tabstop=4 " tabs only count for 4 spaces set tabstop=4 " tabs only count for 4 spaces
set shiftwidth=4 " when indenting use 4 spaces set shiftwidth=4 " when indenting use 4 spaces
set noexpandtab " use tab characters set expandtab " don't use tab characters
set autoindent "set autoindent
" view " view
set number set number
@@ -42,7 +41,8 @@ set hlsearch " highlight found matches
set incsearch nohlsearch " turn off hightlight after search set incsearch nohlsearch " turn off hightlight after search
set wrap set wrap
set linebreak set linebreak
set nolist " disable line break on wrap set list " disable line break on wrap
set lcs=tab-,trail,leadmultispace,nbsp
" folding " folding
set foldmethod=syntax set foldmethod=syntax
@@ -155,10 +155,8 @@ let g:airline_symbols.whitespace = 'Ξ'
let g:airline#extensions#whitespace#mixed_indent_algo = 2 let g:airline#extensions#whitespace#mixed_indent_algo = 2
let g:airline#extensions#whitespace#checks = [ 'indent', 'long'] let g:airline#extensions#whitespace#checks = [ 'indent', 'long']
" vim-licenses " vim-licenser
let g:licenses_copyright_holders_name = 'Nicolás Ortega Froysa <nicolas@ortegas.org>' let g:licenser_author = 'Nicolás A. Ortega <nicolas@ortegas.org>'
let g:licenses_authors_name = 'Nicolás Ortega Froysa <nicolas@ortegas.org>'
let g:licenses_default_command = [ 'Affero' ]
" FZF " FZF
nnoremap <leader>f :Files<CR> nnoremap <leader>f :Files<CR>