Skip to content

Commit

Permalink
Remove settings that match defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
steveno committed Jul 22, 2024
1 parent 6ceadf9 commit c9534a6
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions dot_config/nvim/lua/settings.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@

require('misc')

-- Status line is always shown
vim.opt.laststatus = 2

-- Show full tags when doing search completion
vim.opt.showfulltag = true
vim.opt.expandtab = true
Expand Down Expand Up @@ -36,9 +33,6 @@ vim.opt.hls = false
-- Disable line wrapping
vim.opt.wrap = false

-- Show us the command we're typing
vim.opt.showcmd = true

-- Highlight matching parens
vim.opt.showmatch = true

Expand All @@ -47,9 +41,6 @@ vim.opt.relativenumber = true
vim.opt.number = true
vim.opt.numberwidth = 3

-- Allow hidden buffers
vim.opt.hidden = true

-- Create backups
local backupdir = "/home/steveno/.local/share/nvim/backups"
if dir_exists(backupdir) then
Expand All @@ -62,9 +53,11 @@ else
end

-- color scheme
vim.opt.termguicolors = true
vim.cmd.colorscheme('paper')

-- Python
vim.g.python3_host_prog = "/usr/bin/python3"

--OCaml
vim.opt.rtp:append("/home/steveno/.local/opam/default/share/merlin/vim")

0 comments on commit c9534a6

Please sign in to comment.