Compare commits

..
16 Commits
Author SHA1 Message Date
nortega 9f67c16187 Remove trailing nonsense. 2025-11-26 11:04:37 +01:00
nortega 740e378a93 Run CheckBackspace before expandableOrJumpable(). 2025-11-24 14:36:55 +01:00
nortega f9315e5aaf Merge branch 'master' into babel 2025-11-18 08:27:24 +01:00
nortega a242455732 Merge branch 'master' into babel 2025-11-13 08:37:02 +01:00
nortega 7242d257d0 Set a scrolloff. 2025-11-07 13:54:40 +01:00
nortega 21d0beb2d9 Merge branch 'master' into babel 2025-10-24 08:49:20 +02:00
nortega 1d7d4d0146 Merge branch 'master' into babel 2025-10-22 08:16:59 +02:00
nortega 1b4ebe2c7c Merge branch 'master' into babel 2025-10-17 13:16:03 +02:00
nortega e33e6f476d Set colorscheme 2025-04-03 10:31:54 +02:00
nortega 8b66bc02b8 Fix theme 2025-04-02 09:11:15 +02:00
nortega c10ba7c8a8 Theme update. 2025-04-02 09:11:15 +02:00
nortega f7a88e4431 Merge branch 'master' into babel 2025-03-31 14:37:41 +02:00
nortega be250e2d9c Merge branch 'master' into babel 2024-10-11 12:56:10 +02:00
nortega c6d32f2b0f Fix path to fzf plugin. 2024-06-11 10:28:07 +02:00
nortega 58eea72762 Use spaces (for work). 2024-06-04 11:05:37 +02:00
nortega d508759e33 Enable bash-language-server manually. 2024-06-04 11:05:29 +02:00
2 changed files with 19 additions and 23 deletions
+5
View File
@@ -9,6 +9,11 @@
"command": "/sbin/texlab",
"filetypes": [ "tex","bib","plaintex","context" ]
},
"bash": {
"command": "bash-language-server",
"args": ["start"],
"filetypes": ["sh","bash"]
},
"golang": {
"command": "gopls",
"rootPatterns": ["go.mod"],
+14 -23
View File
@@ -8,6 +8,7 @@ Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'scrooloose/nerdcommenter'
Plug 'javier-lopez/sprunge.vim'
Plug 'vim-scripts/Trailer-Trash'
Plug 'vim-scripts/bad-whitespace'
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
Plug 'junegunn/fzf.vim'
@@ -16,11 +17,10 @@ Plug 'vim-scripts/scons.vim'
Plug 'danro/rename.vim'
Plug 'ciaranm/detectindent'
Plug 'jiangmiao/auto-pairs'
Plug 'https://code.ortegas.org/nortega/vim-licenser.git'
Plug 'antoyo/vim-licenses'
Plug 'flazz/vim-colorschemes'
Plug 'xiyaowong/transparent.nvim'
Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'github/copilot.vim', {'branch': 'release'}
call plug#end()
filetype plugin indent on
" to ignore plugin indent changes, instead use:
@@ -28,10 +28,10 @@ filetype plugin on
""" General
" indentation
set tabstop=2 " tabs only count for 4 spaces
set shiftwidth=2 " when indenting use 4 spaces
set expandtab " don't use tab characters
"set autoindent
set tabstop=4 " tabs only count for 4 spaces
set shiftwidth=4 " when indenting use 4 spaces
set expandtab " use tab characters
set autoindent
" view
set number
@@ -41,8 +41,7 @@ set hlsearch " highlight found matches
set incsearch nohlsearch " turn off hightlight after search
set wrap
set linebreak
set list " disable line break on wrap
set lcs=tab-,trail,leadmultispace,nbsp
set nolist " disable line break on wrap
" folding
set foldmethod=syntax
@@ -103,12 +102,8 @@ nmap <silent><nowait> gr <Plug>(coc-references)
" syntax highlighting
syntax on
set background=dark
highlight Normal ctermbg=none
colorscheme solarized8_dark
highlight Normal ctermbg=none
highlight Normal guibg=none
highlight NonText guibg=none
highlight Normal ctermbg=none
highlight NonText ctermbg=none
""" Project-Specific Settings
@@ -155,15 +150,11 @@ let g:airline_symbols.whitespace = 'Ξ'
let g:airline#extensions#whitespace#mixed_indent_algo = 2
let g:airline#extensions#whitespace#checks = [ 'indent', 'long']
" vim-licenser
let g:licenser_author = 'Skudonet S.L. <community@skudonet.com>'
" vim-licenses
let g:licenses_copyright_holders_name = 'Nicolás Ortega Froysa <nicolas@ortegas.org>'
let g:licenses_authors_name = 'Nicolás Ortega Froysa <nicolas@ortegas.org>'
let g:licenses_default_command = [ 'Affero' ]
" FZF
nnoremap <leader>f :Files<CR>
nnoremap <leader>F :tabnew<CR>:Files<CR>
nnoremap <leader>g :GFiles<CR>
nnoremap <leader>G :tabnew<CR>:GFiles<CR>
" Copilot
imap <silent><script><expr> <C-J> copilot#Accept("\<CR>")
let g:copilot_no_tab_map = v:true
nnoremap <leader>f :GFiles<CR>
nnoremap <leader>F :tabnew<CR>:GFiles<CR>