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 = " "
local keymap = vim.keymap -- haz las cosas facil..
local keymap = vim.keymap -- Do things easily..
-- General Keymaps

View File

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