From bae926b26877d93e5a3531b2ebf0023d9a39b290 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Ortega=20Froysa?= Date: Fri, 17 Oct 2025 20:25:29 +0200 Subject: [PATCH 1/4] Use solarized colorscheme. --- init.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.vim b/init.vim index 63174fc..95cad8d 100644 --- a/init.vim +++ b/init.vim @@ -85,7 +85,7 @@ nmap ]f (coc-fix-current) " syntax highlighting syntax on set background=dark -"colorscheme solarized8_dark +colorscheme solarized8_dark highlight Normal ctermbg=none """ Project-Specific Settings From 8ee0514dea95cc943aae01c64b9f6d767d745add Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Ortega=20Froysa?= Date: Sun, 19 Oct 2025 10:33:10 +0200 Subject: [PATCH 2/4] FZF plugin: use GFiles command. --- init.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.vim b/init.vim index 95cad8d..d3b38a7 100644 --- a/init.vim +++ b/init.vim @@ -139,5 +139,5 @@ let g:licenses_authors_name = 'Nicolás Ortega Froysa ' let g:licenses_default_command = [ 'Affero' ] " FZF -nnoremap f :FZF -nnoremap F :tabnew:FZF +nnoremap f :GFiles +nnoremap F :tabnew:GFiles From 34429ea9804b9a296b9d5dda70c10ce79529ad22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Ortega=20Froysa?= Date: Sun, 19 Oct 2025 19:47:23 +0200 Subject: [PATCH 3/4] Use gopls server for golang. --- coc-settings.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/coc-settings.json b/coc-settings.json index 748e57f..0a1e06d 100644 --- a/coc-settings.json +++ b/coc-settings.json @@ -8,6 +8,11 @@ "latex": { "command": "/sbin/texlab", "filetypes": [ "tex","bib","plaintex","context" ] + }, + "golang": { + "command": "gopls", + "rootPatterns": ["go.mod"], + "filetypes": ["go"] } } } From 7d7886e38c869e72aef51ffebee9f0849b64b6ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Ortega=20Froysa?= Date: Wed, 22 Oct 2025 07:59:32 +0200 Subject: [PATCH 4/4] Switch colorscheme back to 0x7A69_dark. --- init.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.vim b/init.vim index d3b38a7..0b57739 100644 --- a/init.vim +++ b/init.vim @@ -85,7 +85,7 @@ nmap ]f (coc-fix-current) " syntax highlighting syntax on set background=dark -colorscheme solarized8_dark +colorscheme 0x7A69_dark highlight Normal ctermbg=none """ Project-Specific Settings