Files
nvim/init.lua
Steven Medeiros Melo 48426854e1 Initial Nvim Config Commit
2024-02-23 20:12:22 -05:00

81 lines
2.0 KiB
Lua

require("stevenmm")
--vim.cmd.source('$XDG_CONFIG_HOME/nvim/lua/stevenmm/init.lua')
--require("stevenmm")
-- vim.wo.number = true
-- vim.wo.relativenumber = true
--
-- vim.g.mapleader = ' '
-- vim.g.maplocalleader = ' '
--
-- local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
-- if not vim.loop.fs_stat(lazypath) then
-- vim.fn.system({
-- "git",
-- "clone",
-- "--filter=blob:none",
-- "https://github.com/folke/lazy.nvim.git",
-- "--branch=stable", -- latest stable release
-- lazypath,
-- })
-- end
-- vim.opt.rtp:prepend(lazypath)
--
-- vim.o.hlsearch = false
--
-- vim.o.mouse = 'a'
--
-- vim.o.breakindent = true
--
-- vim.o.ignorecase = true
-- vim.o.smartcase = true
--
-- vim.wo.signcolumn = 'yes'
-- vim.o.updatetime = 250
-- vim.o.completeopt = 'menuone,noselect'
-- vim.o.termguicolors = true
--require('lazy').setup(
---- {
-- "plugins",
---- },
-- {
-- -- root = vim.fn.stdpath("config") .. "/lazy/plugins",
--
-- }
--)
-- vim.cmd.colorscheme('flexoki-dark')
-- vim.cmd.source('$XDG_CONFIG_HOME/nvim/lua/init.lua')
-- require('init.lua')
-- vim.cmd.colorscheme 'oxocarbon'
-- require(vim.fn.expand('$XDG_CONFIG_HOME/nvim/lua/') .. 'init.lua')
-- require('lazy').setup({
-- 'nyoom-engineering/oxocarbon.nvim', -- Colorscheme
-- 'nvim-lualine/lualine.nvim', -- Fancier statusline
-- Add indentation guides even on blank lines
-- 'lukas-reineke/indent-blankline.nvim',
-- 'nvim-treesitter/nvim-treesitter',
-- 'nvim-treesitter/nvim-treesitter-textobjects', -- Additional textobjects for treesitter
-- 'williamboman/mason.nvim',
-- 'williamboman/mason-lspconfig.nvim',
-- 'neovim/nvim-lspconfig',
-- {
-- 'hrsh7th/nvim-cmp',
-- dependencies = { 'hrsh7th/cmp-nvim-lsp', 'L3MON4D3/LuaSnip', 'saadparwaiz1/cmp_luasnip' },
-- },
-- 'nvim-tree/nvim-web-devicons',
-- 'nvim-tree/nvim-tree.lua',
-- { 'nvim-telescope/telescope.nvim', version = '*', dependencies = { 'nvim-lua/plenary.nvim', } },
-- 'nvim-telescope/telescope-file-browser.nvim',
-- 'ThePrimeagen/harpoon',
-- }, {})