Translated some spanish comments to english.

This commit is contained in:
edwark43 2024-01-12 11:54:17 -05:00 committed by GitHub
parent a64296027d
commit ed2f7bdb40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
vim.g.mapleader = " " vim.g.mapleader = " "
local keymap = vim.keymap -- haz las cosas facil.. local keymap = vim.keymap -- Do things easily..
-- General Keymaps -- General Keymaps

View File

@ -1,6 +1,6 @@
local opt = vim.opt -- for conciseness local opt = vim.opt -- for conciseness
-- Numeracion de las lineas -- Number of Lines
opt.relativenumber = true opt.relativenumber = true
opt.number = true opt.number = true
@ -20,7 +20,7 @@ opt.smartcase = true
-- Cursor line -- Cursor line
opt.cursorline = true opt.cursorline = true
-- appearance -- Appearance
opt.termguicolors = true opt.termguicolors = true
opt.background = "dark" opt.background = "dark"
opt.signcolumn = "yes" opt.signcolumn = "yes"
@ -31,7 +31,7 @@ opt.backspace = "indent,eol,start"
-- Clipboard -- Clipboard
opt.clipboard:append("unnamedplus") opt.clipboard:append("unnamedplus")
-- Splitt Windows -- Split Windows
opt.splitright = true opt.splitright = true
opt.splitbelow = true opt.splitbelow = true