nvim config style changes

This commit is contained in:
James Dixon 2023-01-24 13:21:17 -05:00
parent b774176001
commit cf2c700552
5 changed files with 8 additions and 12 deletions

View File

@ -7,4 +7,4 @@ require('config.plugins') -- loads plugins (packer)
require('config.platform_specific') -- platform specific settings (Win32, Mac, Linux)
-- plugin configurations
require('plugin-config')
require('plugin-config') -- plugin specific configurations

View File

@ -1,6 +1,4 @@
--
-- keymaps
--
-- keymaps.lua
vim.g.mapleader = ' '

View File

@ -1,3 +1,4 @@
-- platform_specific.lua
-- platform/os specific stuff
if vim.fn.has('win32') then
vim.cmd([[

View File

@ -1,6 +1,4 @@
--
-- plugins
--
-- plugins.lua
local install_path = vim.fn.stdpath 'data' .. '/site/pack/packer/start/packer.nvim'
if vim.fn.empty(vim.fn.glob(install_path)) > 0 then

View File

@ -1,6 +1,5 @@
--
-- settings.lua
-- general settings
--
-- encoding/format
vim.opt.encoding = 'utf-8'